@theguild/components 9.1.3-alpha-20250118082844-d1f30ddd972367010d18212a8489f217331d997d → 9.1.3-alpha-20250121171512-e1781dd82a96715212b0cbbcf7bc7de427034fd1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,12 @@
1
+ import { FC, ReactElement, ComponentProps, ReactNode } from 'react';
2
+
3
+ declare const Hero: FC<{
4
+ className?: string;
5
+ heading: string;
6
+ text: string;
7
+ checkmarks: string[];
8
+ logo: ReactElement<ComponentProps<'svg'>>;
9
+ children?: ReactNode;
10
+ }>;
11
+
12
+ export { Hero };
@@ -0,0 +1,132 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { cloneElement, useId } from "react";
3
+ import { cn } from "../../cn";
4
+ import { DecorationIsolation } from "../decorations";
5
+ import { Heading } from "../heading";
6
+ import { CheckIcon } from "../icons";
7
+ const Hero = (props) => {
8
+ const gradientWhiteId = useId();
9
+ const gradientWhiteId2 = useId();
10
+ const greenBgId = useId();
11
+ return /* @__PURE__ */ jsxs(
12
+ "div",
13
+ {
14
+ className: cn(
15
+ "relative isolate mx-4 flex max-w-[90rem] flex-col items-center justify-center gap-6 overflow-hidden rounded-3xl bg-blue-400 px-4 py-6 max-sm:mt-2 sm:py-12 md:mx-6 md:gap-8 lg:py-24",
16
+ props.className
17
+ ),
18
+ children: [
19
+ /* @__PURE__ */ jsxs(DecorationIsolation, { className: "-z-10", children: [
20
+ cloneElement(props.logo, {
21
+ className: cn(
22
+ "absolute stroke-white/10 max-lg:hidden",
23
+ "-left-1/2 top-1/2 -translate-y-1/2"
24
+ ),
25
+ fill: `url(#${gradientWhiteId2})`,
26
+ strokeWidth: "0.1",
27
+ width: "auto",
28
+ height: "50%"
29
+ }),
30
+ cloneElement(props.logo, {
31
+ className: cn(
32
+ "absolute top-1/2 -translate-y-1/2 stroke-white/10",
33
+ "-right-1/2 lg:-right-1/3",
34
+ "h-2/3 lg:h-[calc(100%-5%)]"
35
+ ),
36
+ fill: `url(#${gradientWhiteId2})`,
37
+ strokeWidth: "0.1",
38
+ width: "auto"
39
+ })
40
+ ] }),
41
+ /* @__PURE__ */ jsxs("div", { className: "relative", children: [
42
+ cloneElement(props.logo, {
43
+ fill: `url(#${gradientWhiteId})`,
44
+ className: "absolute inset-1/2 -translate-x-1/2 -translate-y-1/2 size-1/2"
45
+ }),
46
+ /* @__PURE__ */ jsxs(
47
+ "svg",
48
+ {
49
+ width: "96",
50
+ height: "96",
51
+ viewBox: "0 0 96 96",
52
+ fill: "none",
53
+ xmlns: "http://www.w3.org/2000/svg",
54
+ children: [
55
+ /* @__PURE__ */ jsx("rect", { width: "96", height: "96", rx: "24", fill: `url(#${greenBgId})` }),
56
+ /* @__PURE__ */ jsx(
57
+ "rect",
58
+ {
59
+ x: "0.5",
60
+ y: "0.5",
61
+ width: "95",
62
+ height: "95",
63
+ rx: "23.5",
64
+ stroke: `url(#${gradientWhiteId})`
65
+ }
66
+ ),
67
+ /* @__PURE__ */ jsx("path", { d: "M57.0264 32.1652H48.9577L53.8032 27.3197L48.4855 22L43.1658 27.3197L48.0114 32.1652H39.9427C38.9042 32.1652 37.9069 32.5786 37.1721 33.3134L23 47.4855L28.3197 52.8052L45.715 35.4099C47.2452 33.8797 49.7258 33.8797 51.2561 35.4099L68.6513 52.8052L73.971 47.4855L59.797 33.3114C59.0622 32.5767 58.0649 32.1632 57.0264 32.1632V32.1652ZM48.4854 63.3623L43.1665 68.6811L48.4854 74L53.8042 68.6811L48.4854 63.3623ZM39.9446 52.8054H48.4855H48.4894H57.0303C58.0688 52.8054 59.0661 53.2188 59.8008 53.9536L63.89 58.0428L58.5704 63.3625L51.258 56.0501C49.7277 54.5198 47.2472 54.5198 45.7169 56.0501L38.4045 63.3625L33.0848 58.0428L37.174 53.9536C37.9088 53.2188 38.9061 52.8054 39.9446 52.8054Z" }),
68
+ /* @__PURE__ */ jsxs("defs", { children: [
69
+ /* @__PURE__ */ jsxs(
70
+ "linearGradient",
71
+ {
72
+ id: greenBgId,
73
+ x1: "0",
74
+ y1: "0",
75
+ x2: "96",
76
+ y2: "96",
77
+ gradientUnits: "userSpaceOnUse",
78
+ children: [
79
+ /* @__PURE__ */ jsx("stop", { stopColor: "#3B736A" }),
80
+ /* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#15433C" })
81
+ ]
82
+ }
83
+ ),
84
+ /* @__PURE__ */ jsxs(
85
+ "linearGradient",
86
+ {
87
+ id: gradientWhiteId,
88
+ x1: "0",
89
+ y1: "0",
90
+ x2: "96",
91
+ y2: "96",
92
+ gradientUnits: "userSpaceOnUse",
93
+ children: [
94
+ /* @__PURE__ */ jsx("stop", { stopColor: "white", stopOpacity: "0.8" }),
95
+ /* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "white", stopOpacity: "0.4" })
96
+ ]
97
+ }
98
+ ),
99
+ /* @__PURE__ */ jsxs(
100
+ "linearGradient",
101
+ {
102
+ id: gradientWhiteId2,
103
+ x1: "1",
104
+ y1: "2",
105
+ x2: "161",
106
+ y2: "171",
107
+ gradientUnits: "userSpaceOnUse",
108
+ children: [
109
+ /* @__PURE__ */ jsx("stop", { stopColor: "white", stopOpacity: "0.1" }),
110
+ /* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "white", stopOpacity: "0.5" })
111
+ ]
112
+ }
113
+ )
114
+ ] })
115
+ ]
116
+ }
117
+ )
118
+ ] }),
119
+ /* @__PURE__ */ jsx(Heading, { as: "h1", size: "xl", className: "mx-auto max-w-3xl text-balance text-center", children: props.heading }),
120
+ /* @__PURE__ */ jsx("p", { className: "mx-auto w-[512px] max-w-[80%] text-center leading-6 text-green-800", children: props.text }),
121
+ /* @__PURE__ */ jsx("ul", { className: "mx-auto flex list-none gap-x-6 gap-y-2 text-sm font-medium max-md:flex-col", children: props.checkmarks.map((text) => /* @__PURE__ */ jsxs("li", { className: "flex items-center gap-2", children: [
122
+ /* @__PURE__ */ jsx(CheckIcon, { className: "text-green-800" }),
123
+ text
124
+ ] }, text)) }),
125
+ /* @__PURE__ */ jsx("div", { className: "flex w-full justify-center gap-2 px-0.5 max-sm:flex-col sm:gap-4", children: props.children })
126
+ ]
127
+ }
128
+ );
129
+ };
130
+ export {
131
+ Hero
132
+ };
@@ -18,6 +18,7 @@ export { GetYourAPIGameRightSection } from './get-your-api-game-right-section.mj
18
18
  export { HiveNavigation, HiveNavigationProps } from './hive-navigation/index.mjs';
19
19
  export { HiveFooter } from './hive-footer/index.mjs';
20
20
  export { ToolsAndLibrariesCards } from './tools-and-libraries-cards/index.mjs';
21
+ export { Hero } from './hero/index.mjs';
21
22
  export { AncillaryProductCard, MainProductCard, ProductCard, ProductCardProps } from './product-card/index.mjs';
22
23
  export { DecorationIsolation } from './decorations/index.mjs';
23
24
  export { CallToAction, CallToActionProps } from './call-to-action.mjs';
@@ -17,6 +17,7 @@ import { GetYourAPIGameRightSection } from "./get-your-api-game-right-section";
17
17
  import { HiveNavigation, GraphQLConfCard } from "./hive-navigation";
18
18
  import { HiveFooter } from "./hive-footer";
19
19
  import { ToolsAndLibrariesCards } from "./tools-and-libraries-cards";
20
+ import { Hero } from "./hero";
20
21
  export * from "./product-card";
21
22
  export * from "./decorations";
22
23
  export * from "./call-to-action";
@@ -43,6 +44,7 @@ export {
43
44
  GetYourAPIGameRightSection,
44
45
  Giscus,
45
46
  GraphQLConfCard,
47
+ Hero,
46
48
  HeroGradient,
47
49
  HeroIllustration,
48
50
  HeroMarketplace,
package/dist/index.d.mts CHANGED
@@ -21,6 +21,7 @@ export { GetYourAPIGameRightSection } from './components/get-your-api-game-right
21
21
  export { HiveNavigation, HiveNavigationProps } from './components/hive-navigation/index.mjs';
22
22
  export { HiveFooter } from './components/hive-footer/index.mjs';
23
23
  export { ToolsAndLibrariesCards } from './components/tools-and-libraries-cards/index.mjs';
24
+ export { Hero } from './components/hero/index.mjs';
24
25
  export { AncillaryProductCard, MainProductCard, ProductCard, ProductCardProps } from './components/product-card/index.mjs';
25
26
  export { DecorationIsolation } from './components/decorations/index.mjs';
26
27
  export { CallToAction, CallToActionProps } from './components/call-to-action.mjs';
@@ -9,25 +9,27 @@ declare const useMDXComponents: (components?: object) => {
9
9
  object?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>, "ref">> | undefined;
10
10
  map?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>, "ref">> | undefined;
11
11
  filter?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGFilterElement>, "ref">> | undefined;
12
- code: keyof react.JSX.IntrinsicElements | react.FC<react.ClassAttributes<HTMLElement> & react.HTMLAttributes<HTMLElement> & {
13
- "data-language"?: string;
14
- }> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">>;
15
- path?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGPathElement>, "ref">> | undefined;
16
12
  footer?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
17
- set?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGSetElement>, "ref">> | undefined;
18
- search?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
13
+ article?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
19
14
  title?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>, "ref">> | undefined;
15
+ menu?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.MenuHTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
16
+ search?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
20
17
  big?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
21
18
  link?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>, "ref">> | undefined;
22
19
  small?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
23
20
  sub?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
24
21
  sup?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
25
- data?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>, "ref">> | undefined;
22
+ code: keyof react.JSX.IntrinsicElements | react.FC<react.ClassAttributes<HTMLElement> & react.HTMLAttributes<HTMLElement> & {
23
+ "data-language"?: string;
24
+ }> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">>;
25
+ path?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGPathElement>, "ref">> | undefined;
26
+ set?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.SVGProps<SVGSetElement>, "ref">> | undefined;
27
+ time?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>, "ref">> | undefined;
28
+ span?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref">> | undefined;
26
29
  a: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref">>;
27
30
  abbr?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
28
31
  address?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
29
32
  area?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>, "ref">> | undefined;
30
- article?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
31
33
  aside?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
32
34
  audio?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>, "ref">> | undefined;
33
35
  b?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
@@ -44,6 +46,7 @@ declare const useMDXComponents: (components?: object) => {
44
46
  cite?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
45
47
  col?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "ref">> | undefined;
46
48
  colgroup?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "ref">> | undefined;
49
+ data?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>, "ref">> | undefined;
47
50
  datalist?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>, "ref">> | undefined;
48
51
  dd?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
49
52
  del?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.DelHTMLAttributes<HTMLModElement>, HTMLModElement>, "ref">> | undefined;
@@ -81,7 +84,6 @@ declare const useMDXComponents: (components?: object) => {
81
84
  li: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref">> | ((props: Omit<react.DetailedHTMLProps<react.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref">) => react_jsx_runtime.JSX.Element);
82
85
  main?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
83
86
  mark?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
84
- menu?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.MenuHTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
85
87
  menuitem?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
86
88
  meta?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>, "ref">> | undefined;
87
89
  meter?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>, "ref">> | undefined;
@@ -108,7 +110,6 @@ declare const useMDXComponents: (components?: object) => {
108
110
  section?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
109
111
  select?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, "ref">> | undefined;
110
112
  source?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>, "ref">> | undefined;
111
- span?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref">> | undefined;
112
113
  strong?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
113
114
  style?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>, "ref">> | undefined;
114
115
  summary: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">>;
@@ -120,7 +121,6 @@ declare const useMDXComponents: (components?: object) => {
120
121
  tfoot?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref">> | undefined;
121
122
  th: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>> | react.FC<Omit<react.DetailedHTMLProps<react.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, "ref">>;
122
123
  thead?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref">> | undefined;
123
- time?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>, "ref">> | undefined;
124
124
  tr: keyof react.JSX.IntrinsicElements | react.FC<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>> | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "ref">>;
125
125
  track?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>, "ref">> | undefined;
126
126
  u?: keyof react.JSX.IntrinsicElements | react.FC<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, "ref">> | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theguild/components",
3
- "version": "9.1.3-alpha-20250118082844-d1f30ddd972367010d18212a8489f217331d997d",
3
+ "version": "9.1.3-alpha-20250121171512-e1781dd82a96715212b0cbbcf7bc7de427034fd1",
4
4
  "repository": {
5
5
  "url": "https://github.com/the-guild-org/docs",
6
6
  "directory": "packages/components"
@@ -51,8 +51,8 @@
51
51
  "@radix-ui/react-navigation-menu": "^1.2.0",
52
52
  "clsx": "2.1.1",
53
53
  "fuzzy": "0.1.3",
54
- "nextra": "4.0.4",
55
- "nextra-theme-docs": "4.0.4",
54
+ "nextra": "4.0.3",
55
+ "nextra-theme-docs": "4.0.3",
56
56
  "react-paginate": "8.2.0",
57
57
  "react-player": "2.16.0",
58
58
  "semver": "^7.3.8",