@theguild/components 8.0.0-alpha-20241120105145-cd16661303b7d080c2fd1c50e3ed8d407c9106f7 → 8.0.0-alpha-20241120111327-3528aeee2acb79714bb28b2a40bafba55ecfb623

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.
Files changed (37) hide show
  1. package/dist/components/cookies-consent.d.mts +2 -1
  2. package/dist/components/get-your-api-game-right-section.js +2 -2
  3. package/dist/components/hive-footer/contact-us.d.mts +5 -0
  4. package/dist/components/hive-footer/contact-us.js +21 -0
  5. package/dist/components/hive-footer/index.d.mts +16 -0
  6. package/dist/components/{hive-footer.js → hive-footer/index.js} +14 -27
  7. package/dist/components/hive-navigation/index.d.mts +6 -4
  8. package/dist/components/hive-navigation/index.js +33 -27
  9. package/dist/components/icons/index.d.mts +1 -1
  10. package/dist/components/icons/index.js +50 -52
  11. package/dist/components/index.d.mts +3 -4
  12. package/dist/components/index.js +2 -6
  13. package/dist/components/schema-type.js +1 -1
  14. package/dist/components/stud.d.mts +2 -1
  15. package/dist/index.d.mts +5 -7
  16. package/dist/index.js +3 -1
  17. package/dist/logos/guild.js +1 -1
  18. package/dist/logos/index.d.mts +20 -21
  19. package/dist/logos/index.js +16 -13
  20. package/dist/products.js +1 -3
  21. package/dist/server/index.d.mts +4 -3
  22. package/dist/server/index.js +2 -1
  23. package/dist/server/mdx-components.d.mts +182 -202
  24. package/dist/server/mdx-components.js +2 -1
  25. package/dist/server/next.config.js +16 -2
  26. package/dist/server/theme-layout.d.mts +7 -1
  27. package/dist/server/theme-layout.js +31 -15
  28. package/dist/types/components.d.mts +1 -6
  29. package/package.json +2 -2
  30. package/style.css +1 -31
  31. package/dist/components/footer.d.mts +0 -9
  32. package/dist/components/footer.js +0 -116
  33. package/dist/components/guild-navbar-logo.d.mts +0 -19
  34. package/dist/components/guild-navbar-logo.js +0 -62
  35. package/dist/components/hive-footer.d.mts +0 -12
  36. package/dist/helpers/render-slot.d.mts +0 -3
  37. package/dist/helpers/render-slot.js +0 -21
@@ -1,6 +1,7 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { ComponentProps } from 'react';
2
3
 
3
- type CookiesConsentProps = React.HTMLAttributes<HTMLElement>;
4
+ type CookiesConsentProps = ComponentProps<'div'>;
4
5
  declare function CookiesConsent(props: CookiesConsentProps): react_jsx_runtime.JSX.Element | null;
5
6
 
6
7
  export { CookiesConsent, type CookiesConsentProps };
@@ -13,7 +13,7 @@ function GetYourAPIGameRightSection({ className }) {
13
13
  /* @__PURE__ */ jsx(GreenArchDecoration, { className: "absolute inset-y-0 right-0 hidden opacity-10 md:block [@media(min-width:1300px)]:opacity-100" }),
14
14
  /* @__PURE__ */ jsx(StrokeDecoration, { className: "absolute right-[607px] max-md:right-[-36px] max-md:top-[-71px] max-md:size-[200px] max-md:rotate-180 md:bottom-0" })
15
15
  ] }),
16
- /* @__PURE__ */ jsxs("div", { className: "flex flex-col items-stretch justify-between gap-x-6 gap-y-4 p-4 sm:items-center md:h-[308px] md:flex-row md:px-24", children: [
16
+ /* @__PURE__ */ jsxs("div", { className: "flex items-stretch justify-between gap-x-6 gap-y-4 p-4 max-md:flex-col sm:items-center md:h-[308px] md:px-24", children: [
17
17
  /* @__PURE__ */ jsx(
18
18
  Heading,
19
19
  {
@@ -23,7 +23,7 @@ function GetYourAPIGameRightSection({ className }) {
23
23
  children: "Get your API game right."
24
24
  }
25
25
  ),
26
- /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-x-4 gap-y-2 whitespace-pre sm:flex-row", children: [
26
+ /* @__PURE__ */ jsxs("div", { className: "flex gap-x-4 gap-y-2 whitespace-pre max-sm:flex-col", children: [
27
27
  /* @__PURE__ */ jsx(CallToAction, { variant: "secondary-inverted", href: "https://app.graphql-hive.com/", children: "Get started for free" }),
28
28
  /* @__PURE__ */ jsx(
29
29
  CallToAction,
@@ -0,0 +1,5 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+
3
+ declare function ContactUs(): react_jsx_runtime.JSX.Element;
4
+
5
+ export { ContactUs };
@@ -0,0 +1,21 @@
1
+ "use client";
2
+ import { jsx } from "react/jsx-runtime";
3
+ function ContactUs() {
4
+ return /* @__PURE__ */ jsx(
5
+ "a",
6
+ {
7
+ className: "hive-focus -m-2 rounded p-2 font-medium hover:text-blue-700 hover:underline dark:hover:text-blue-100",
8
+ href: "https://the-guild.dev/contact",
9
+ onClick: (event) => {
10
+ if (window.$crisp) {
11
+ window.$crisp.push(["do", "chat:open"]);
12
+ event.preventDefault();
13
+ }
14
+ },
15
+ children: "Contact Us"
16
+ }
17
+ );
18
+ }
19
+ export {
20
+ ContactUs
21
+ };
@@ -0,0 +1,16 @@
1
+ import { FC, ReactNode } from 'react';
2
+ import { ILink } from '../../types/components.mjs';
3
+ import 'next/image';
4
+ import 'next/link';
5
+ import 'react-player';
6
+
7
+ type HiveFooterProps = {
8
+ className?: string;
9
+ resources?: ILink[];
10
+ logo?: ReactNode;
11
+ href?: string;
12
+ description?: string;
13
+ };
14
+ declare const HiveFooter: FC<HiveFooterProps>;
15
+
16
+ export { HiveFooter, type HiveFooterProps };
@@ -1,9 +1,9 @@
1
1
  import { jsx, jsxs } from "react/jsx-runtime";
2
- import { cn } from "../cn";
3
- import { siteOrigin } from "../constants";
4
- import { HiveCombinationMark } from "../logos";
5
- import { PRODUCTS } from "../products";
6
- import { Anchor } from "./anchor";
2
+ import { cn } from "../../cn";
3
+ import { siteOrigin } from "../../constants";
4
+ import { HiveCombinationMark } from "../../logos/index";
5
+ import { PRODUCTS } from "../../products";
6
+ import { Anchor } from "../anchor";
7
7
  import {
8
8
  CSAStarLevelOneIcon,
9
9
  DiscordIcon,
@@ -11,24 +11,24 @@ import {
11
11
  LinkedInIcon,
12
12
  TwitterIcon,
13
13
  YouTubeIcon
14
- } from "./icons";
14
+ } from "../icons/index";
15
+ import { ContactUs } from "./contact-us";
15
16
  const HiveFooter = ({
16
17
  className,
17
- logo,
18
+ logo = /* @__PURE__ */ jsx(HiveCombinationMark, { className: "h-8 w-auto" }),
19
+ href = `${siteOrigin}/`,
18
20
  resources = [],
19
- description
21
+ description = "Open-source GraphQL management platform"
20
22
  }) => {
21
- description ||= "Open-source GraphQL management platform";
22
23
  return /* @__PURE__ */ jsxs("footer", { className: cn("relative flex justify-center px-4 py-6 xl:px-[120px]", className), children: [
23
24
  /* @__PURE__ */ jsxs("div", { className: "mx-4 grid w-full max-w-[75rem] grid-cols-1 gap-x-6 text-green-800 max-lg:gap-y-16 sm:grid-cols-4 lg:gap-x-8 xl:gap-x-10 dark:text-neutral-400", children: [
24
25
  /* @__PURE__ */ jsxs("div", { className: "max-lg:col-span-full", children: [
25
26
  /* @__PURE__ */ jsx(
26
27
  Anchor,
27
28
  {
28
- href: `${siteOrigin}/`,
29
- ...logo,
29
+ href,
30
30
  className: "hive-focus -m-1.5 flex rounded p-1.5 text-green-1000 dark:text-white",
31
- children: logo?.children || /* @__PURE__ */ jsx(HiveCombinationMark, { className: "h-8 w-auto" })
31
+ children: logo
32
32
  }
33
33
  ),
34
34
  /* @__PURE__ */ jsx("p", { className: "mt-6 lg:mt-8", children: description })
@@ -50,24 +50,11 @@ const HiveFooter = ({
50
50
  children: "Pricing"
51
51
  }
52
52
  ),
53
- /* @__PURE__ */ jsx(
54
- "a",
55
- {
56
- className: "hive-focus -m-2 rounded p-2 font-medium hover:text-blue-700 hover:underline dark:hover:text-blue-100",
57
- href: "https://the-guild.dev/contact",
58
- onClick: (event) => {
59
- if (window.$crisp) {
60
- window.$crisp.push(["do", "chat:open"]);
61
- event.preventDefault();
62
- }
63
- },
64
- children: "Contact Us"
65
- }
66
- )
53
+ /* @__PURE__ */ jsx(ContactUs, {})
67
54
  ] }),
68
55
  /* @__PURE__ */ jsx(CSAStarLink, { className: "sm:col-start-[-1] lg:col-start-[-2]" })
69
56
  ] }),
70
- /* @__PURE__ */ jsxs("div", { className: "col-span-full flex flex-row flex-wrap justify-between gap-x-[inherit] gap-y-8 lg:w-full lg:pb-2 lg:pt-8", children: [
57
+ /* @__PURE__ */ jsxs("div", { className: "col-span-full flex flex-wrap justify-between gap-x-[inherit] gap-y-8 lg:w-full lg:pb-2 lg:pt-8", children: [
71
58
  /* @__PURE__ */ jsx("div", { className: "flex gap-6 lg:order-1", children: COMMUNITY.map(({ icon: Icon, ...iconProps }) => /* @__PURE__ */ jsx(
72
59
  Anchor,
73
60
  {
@@ -1,5 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import react__default, { ReactNode } from 'react';
2
+ import react__default, { ReactNode, ComponentProps } from 'react';
3
+ import { Search } from 'nextra/components';
3
4
  export { GraphQLConfCard, GraphQLConfCardProps } from './graphql-conf-card.mjs';
4
5
  import 'next/image';
5
6
 
@@ -23,6 +24,7 @@ interface HiveNavigationProps {
23
24
  }>;
24
25
  children: ReactNode;
25
26
  }[];
27
+ searchProps?: ComponentProps<typeof Search>;
26
28
  }
27
29
  /**
28
30
  *
@@ -36,15 +38,15 @@ interface HiveNavigationProps {
36
38
  * </HiveNavigation>
37
39
  * ```
38
40
  */
39
- declare function HiveNavigation({ companyMenuChildren, children, className, productName, logo, navLinks, developerMenu, }: HiveNavigationProps): react_jsx_runtime.JSX.Element;
41
+ declare function HiveNavigation({ companyMenuChildren, children, className, productName, logo, navLinks, developerMenu, searchProps, }: HiveNavigationProps): react_jsx_runtime.JSX.Element;
40
42
  interface ProductsMenuProps extends MenuContentColumnsProps {
41
43
  productName: string;
42
44
  }
43
45
  /**
44
46
  * @internal
45
47
  */
46
- declare const ProductsMenu: react__default.ForwardRefExoticComponent<ProductsMenuProps & react__default.RefAttributes<HTMLDivElement>>;
47
- type MenuContentColumnsProps = react__default.HTMLAttributes<HTMLDivElement>;
48
+ declare const ProductsMenu: react__default.ForwardRefExoticComponent<Omit<ProductsMenuProps, "ref"> & react__default.RefAttributes<HTMLDivElement>>;
49
+ type MenuContentColumnsProps = ComponentProps<'div'>;
48
50
  interface DeveloperMenuProps extends react__default.HTMLAttributes<HTMLDivElement> {
49
51
  isHive: boolean;
50
52
  developerMenu: undefined | {
@@ -1,13 +1,19 @@
1
1
  "use client";
2
2
  import { jsx, jsxs } from "react/jsx-runtime";
3
- import React, { forwardRef, Fragment, useEffect, useRef } from "react";
3
+ import React, {
4
+ forwardRef,
5
+ Fragment,
6
+ useEffect,
7
+ useRef
8
+ } from "react";
4
9
  import { createPortal } from "react-dom";
5
10
  import { usePathname } from "next/navigation";
6
- import { setMenu, useMenu, useThemeConfig } from "nextra-theme-docs";
11
+ import { setMenu, useMenu } from "nextra-theme-docs";
12
+ import { Search } from "nextra/components";
7
13
  import { useMounted } from "nextra/hooks";
8
14
  import { MenuIcon } from "nextra/icons";
9
15
  import { cn } from "../../cn";
10
- import { renderSlot } from "../../helpers/render-slot";
16
+ import { siteOrigin } from "../../constants";
11
17
  import { GraphQLFoundationLogo, GuildLogo, HiveCombinationMark, TheGuild } from "../../logos";
12
18
  import { PRODUCTS, SIX_HIGHLIGHTED_PRODUCTS } from "../../products";
13
19
  import { Anchor } from "../anchor";
@@ -43,20 +49,18 @@ function HiveNavigation({
43
49
  children,
44
50
  className,
45
51
  productName,
46
- logo,
47
- navLinks,
48
- developerMenu
49
- }) {
50
- const Search = useThemeConfig().search;
51
- const isHive = productName === "Hive";
52
- const containerRef = useRef(null);
53
- logo ||= /* @__PURE__ */ jsx(HiveLogoLink, { isHive });
54
- navLinks ||= [
52
+ logo = /* @__PURE__ */ jsx(HiveLogoLink, { isHive: productName === "Hive" }),
53
+ navLinks = [
55
54
  {
56
- href: isHive ? "/pricing" : "https://the-guild.dev/graphql/hive/pricing",
55
+ href: productName === "Hive" ? "/pricing" : "https://the-guild.dev/graphql/hive/pricing",
57
56
  children: "Pricing"
58
57
  }
59
- ];
58
+ ],
59
+ developerMenu,
60
+ searchProps
61
+ }) {
62
+ const isHive = productName === "Hive";
63
+ const containerRef = useRef(null);
60
64
  return /* @__PURE__ */ jsxs(
61
65
  "div",
62
66
  {
@@ -103,17 +107,19 @@ function HiveNavigation({
103
107
  ] }),
104
108
  /* @__PURE__ */ jsx("div", { className: "flex-1" }),
105
109
  children,
106
- renderSlot(Search, {
107
- className: cn(
108
- "relative ml-4 basis-64 [&_:is(input,kbd)]:text-green-700 dark:[&_:is(input,kbd)]:text-neutral-300 [&_input]:h-12 [&_input]:w-full [&_input]:rounded-lg [&_input]:border [&_input]:border-green-200 [&_input]:bg-white [&_input]:pl-4 [&_input]:pr-8 [&_input]:ring-[hsl(var(--nextra-primary-hue)_var(--nextra-primary-saturation)_32%/var(--tw-ring-opacity))] [&_input]:ring-offset-[rgb(var(--nextra-bg))] dark:[&_input]:border-neutral-800 [&_input]:dark:bg-inherit [&_kbd]:absolute [&_kbd]:right-4 [&_kbd]:top-1/2 [&_kbd]:my-0 [&_kbd]:-translate-y-1/2 [&_kbd]:border-none [&_kbd]:bg-green-200 dark:[&_kbd]:bg-neutral-700"
109
- )
110
- }),
110
+ /* @__PURE__ */ jsx(
111
+ Search,
112
+ {
113
+ className: "relative ml-4 basis-64 [&_:is(input,kbd)]:text-green-700 dark:[&_:is(input,kbd)]:text-neutral-300 [&_input]:h-12 [&_input]:w-full [&_input]:rounded-lg [&_input]:border [&_input]:border-green-200 [&_input]:bg-white [&_input]:pl-4 [&_input]:pr-8 [&_input]:ring-[hsl(var(--nextra-primary-hue)_var(--nextra-primary-saturation)_32%/var(--tw-ring-opacity))] [&_input]:ring-offset-[rgb(var(--nextra-bg))] dark:[&_input]:border-neutral-800 [&_input]:dark:bg-inherit [&_kbd]:absolute [&_kbd]:right-4 [&_kbd]:top-1/2 [&_kbd]:my-0 [&_kbd]:-translate-y-1/2 [&_kbd]:border-none [&_kbd]:bg-green-200 dark:[&_kbd]:bg-neutral-700",
114
+ ...searchProps
115
+ }
116
+ ),
111
117
  /* @__PURE__ */ jsxs(
112
118
  CallToAction,
113
119
  {
114
120
  className: "ml-4 max-lg:hidden",
115
121
  variant: "tertiary",
116
- href: "https://the-guild.dev/contact",
122
+ href: `${siteOrigin}/contact`,
117
123
  target: "_blank",
118
124
  rel: "noopener noreferrer",
119
125
  onClick: (event) => {
@@ -176,7 +182,7 @@ const ProductsMenu = React.forwardRef(
176
182
  NavigationMenuLink,
177
183
  {
178
184
  href: bidirectionalProductLink(product),
179
- className: "flex flex-row items-center gap-4 p-4",
185
+ className: "flex items-center gap-4 p-4",
180
186
  children: [
181
187
  /* @__PURE__ */ jsx("div", { className: "size-12 rounded-lg bg-blue-400 p-2.5", children: /* @__PURE__ */ jsx(Logo, { className: "size-7 text-green-1000" }) }),
182
188
  /* @__PURE__ */ jsxs("div", { children: [
@@ -196,7 +202,7 @@ const ProductsMenu = React.forwardRef(
196
202
  NavigationMenuLink,
197
203
  {
198
204
  href: bidirectionalProductLink(product),
199
- className: "flex flex-row items-center gap-3 px-4 py-2",
205
+ className: "flex items-center gap-3 px-4 py-2",
200
206
  arrow: true,
201
207
  children: [
202
208
  /* @__PURE__ */ jsx("div", { className: "flex size-8 items-center justify-center rounded bg-beige-200 p-[5px] dark:bg-white/5", children: /* @__PURE__ */ jsx(Logo, { className: "size-8 text-green-1000 dark:text-neutral-300" }) }),
@@ -247,7 +253,7 @@ const DeveloperMenu = React.forwardRef(
247
253
  icon: RightCornerIcon,
248
254
  children: "Product Updates"
249
255
  },
250
- { href: "https://the-guild.dev/blog", icon: PencilIcon, children: "Blog" },
256
+ { href: `${siteOrigin}/blog`, icon: PencilIcon, children: "Blog" },
251
257
  {
252
258
  href: "https://github.com/dotansimha/graphql-code-generator",
253
259
  icon: GitHubIcon,
@@ -285,7 +291,7 @@ function MenuColumnListItem({
285
291
  NavigationMenuLink,
286
292
  {
287
293
  href,
288
- className: "flex flex-row items-center gap-3 text-nowrap px-4 py-2",
294
+ className: "flex items-center gap-3 text-nowrap px-4 py-2",
289
295
  arrow: true,
290
296
  children: [
291
297
  /* @__PURE__ */ jsx(Icon, { className: "size-6 shrink-0" }),
@@ -325,11 +331,11 @@ function CompanyMenu({ children }) {
325
331
  /* @__PURE__ */ jsxs("div", { children: [
326
332
  /* @__PURE__ */ jsx(ColumnLabel, { children: "Company" }),
327
333
  /* @__PURE__ */ jsxs("ul", { children: [
328
- /* @__PURE__ */ jsx(MenuColumnListItem, { icon: GroupIcon, href: "https://the-guild.dev/about-us", children: "About Us" }),
329
- /* @__PURE__ */ jsx(MenuColumnListItem, { icon: AppsIcon, href: "https://the-guild.dev/logos", children: "Brand Assets" })
334
+ /* @__PURE__ */ jsx(MenuColumnListItem, { icon: GroupIcon, href: `${siteOrigin}/about-us`, children: "About Us" }),
335
+ /* @__PURE__ */ jsx(MenuColumnListItem, { icon: AppsIcon, href: `${siteOrigin}/logos`, children: "Brand Assets" })
330
336
  ] }),
331
337
  /* @__PURE__ */ jsx(ColumnLabel, { children: "Proudly made by" }),
332
- /* @__PURE__ */ jsxs(NavigationMenuLink, { href: "https://the-guild.dev", className: "px-4 py-2", arrow: true, children: [
338
+ /* @__PURE__ */ jsxs(NavigationMenuLink, { href: `${siteOrigin}/`, className: "px-4 py-2", arrow: true, children: [
333
339
  /* @__PURE__ */ jsx(GuildLogo, { className: "-my-2 size-10" }),
334
340
  /* @__PURE__ */ jsx(TheGuild, { className: "h-8" })
335
341
  ] }),
@@ -1,3 +1,3 @@
1
- export { ReactComponent as AccountBox, ReactComponent as AppsIcon, ReactComponent as ArrowIcon, ReactComponent as BardIcon, ReactComponent as CSAStarLevelOneIcon, ReactComponent as CaretSlimIcon, ReactComponent as CheckIcon, ReactComponent as CloseIcon, ReactComponent as CodegenIcon, ReactComponent as GroupIcon, ReactComponent as HiveGatewayIcon, ReactComponent as HiveIcon, ReactComponent as HonourIcon, ReactComponent as LinkedInIcon, ReactComponent as ListIcon, ReactComponent as MeshIcon, ReactComponent as MoonIcon, ReactComponent as MoreIcon, ReactComponent as PaperIcon, ReactComponent as PencilIcon, ReactComponent as RightCornerIcon, ReactComponent as SearchIcon, ReactComponent as ShareIcon, ReactComponent as ShieldFlashIcon, ReactComponent as TargetIcon, ReactComponent as TwitterIcon, ReactComponent as YogaIcon, ReactComponent as YouTubeIcon } from '../../logos/angular.mjs';
1
+ export { ReactComponent as AccountBox, ReactComponent as AppsIcon, ReactComponent as ArrowIcon, ReactComponent as BardIcon, ReactComponent as CSAStarLevelOneIcon, ReactComponent as CaretSlimIcon, ReactComponent as CheckIcon, ReactComponent as CloseIcon, ReactComponent as CodegenIcon, ReactComponent as GroupIcon, ReactComponent as HiveGatewayIcon, ReactComponent as HiveIcon, ReactComponent as HonourIcon, ReactComponent as LinkedInIcon, ReactComponent as ListIcon, ReactComponent as MeshIcon, ReactComponent as MoreIcon, ReactComponent as PaperIcon, ReactComponent as PencilIcon, ReactComponent as RightCornerIcon, ReactComponent as SearchIcon, ReactComponent as ShareIcon, ReactComponent as ShieldFlashIcon, ReactComponent as TargetIcon, ReactComponent as TwitterIcon, ReactComponent as YogaIcon, ReactComponent as YouTubeIcon } from '../../logos/angular.mjs';
2
2
  export { DiscordIcon, GitHubIcon, InformationCircleIcon } from 'nextra/icons';
3
3
  import 'react';
@@ -1,62 +1,60 @@
1
1
  import { ReactComponent } from "./caret-slim";
2
2
  import { ReactComponent as ReactComponent2 } from "./close";
3
- import { ReactComponent as ReactComponent3 } from "./moon";
4
- import { ReactComponent as ReactComponent4 } from "./more";
5
- import { ReactComponent as ReactComponent5 } from "./search";
6
- import { ReactComponent as ReactComponent6 } from "./share";
7
- import { ReactComponent as ReactComponent7 } from "./csa-star-level-one";
8
- import { ReactComponent as ReactComponent8 } from "./arrow-icon";
9
- import { ReactComponent as ReactComponent9 } from "./twitter";
10
- import { ReactComponent as ReactComponent10 } from "./linkedin";
11
- import { ReactComponent as ReactComponent11 } from "./youtube";
12
- import { ReactComponent as ReactComponent12 } from "./codegen";
13
- import { ReactComponent as ReactComponent13 } from "./mesh";
14
- import { ReactComponent as ReactComponent14 } from "./yoga";
15
- import { ReactComponent as ReactComponent15 } from "./hive";
16
- import { ReactComponent as ReactComponent16 } from "./hive-gateway";
3
+ import { ReactComponent as ReactComponent3 } from "./more";
4
+ import { ReactComponent as ReactComponent4 } from "./search";
5
+ import { ReactComponent as ReactComponent5 } from "./share";
6
+ import { ReactComponent as ReactComponent6 } from "./csa-star-level-one";
7
+ import { ReactComponent as ReactComponent7 } from "./arrow-icon";
8
+ import { ReactComponent as ReactComponent8 } from "./twitter";
9
+ import { ReactComponent as ReactComponent9 } from "./linkedin";
10
+ import { ReactComponent as ReactComponent10 } from "./youtube";
11
+ import { ReactComponent as ReactComponent11 } from "./codegen";
12
+ import { ReactComponent as ReactComponent12 } from "./mesh";
13
+ import { ReactComponent as ReactComponent13 } from "./yoga";
14
+ import { ReactComponent as ReactComponent14 } from "./hive";
15
+ import { ReactComponent as ReactComponent15 } from "./hive-gateway";
17
16
  import { InformationCircleIcon, GitHubIcon, DiscordIcon } from "nextra/icons";
18
- import { ReactComponent as ReactComponent17 } from "./list";
19
- import { ReactComponent as ReactComponent18 } from "./paper";
20
- import { ReactComponent as ReactComponent19 } from "./target";
21
- import { ReactComponent as ReactComponent20 } from "./right-corner";
22
- import { ReactComponent as ReactComponent21 } from "./pencil";
23
- import { ReactComponent as ReactComponent22 } from "./account-box";
24
- import { ReactComponent as ReactComponent23 } from "./bard";
25
- import { ReactComponent as ReactComponent24 } from "./honour";
26
- import { ReactComponent as ReactComponent25 } from "./shield-flash";
27
- import { ReactComponent as ReactComponent26 } from "./group";
28
- import { ReactComponent as ReactComponent27 } from "./apps";
29
- import { ReactComponent as ReactComponent28 } from "./check";
17
+ import { ReactComponent as ReactComponent16 } from "./list";
18
+ import { ReactComponent as ReactComponent17 } from "./paper";
19
+ import { ReactComponent as ReactComponent18 } from "./target";
20
+ import { ReactComponent as ReactComponent19 } from "./right-corner";
21
+ import { ReactComponent as ReactComponent20 } from "./pencil";
22
+ import { ReactComponent as ReactComponent21 } from "./account-box";
23
+ import { ReactComponent as ReactComponent22 } from "./bard";
24
+ import { ReactComponent as ReactComponent23 } from "./honour";
25
+ import { ReactComponent as ReactComponent24 } from "./shield-flash";
26
+ import { ReactComponent as ReactComponent25 } from "./group";
27
+ import { ReactComponent as ReactComponent26 } from "./apps";
28
+ import { ReactComponent as ReactComponent27 } from "./check";
30
29
  export {
31
- ReactComponent22 as AccountBox,
32
- ReactComponent27 as AppsIcon,
33
- ReactComponent8 as ArrowIcon,
34
- ReactComponent23 as BardIcon,
35
- ReactComponent7 as CSAStarLevelOneIcon,
30
+ ReactComponent21 as AccountBox,
31
+ ReactComponent26 as AppsIcon,
32
+ ReactComponent7 as ArrowIcon,
33
+ ReactComponent22 as BardIcon,
34
+ ReactComponent6 as CSAStarLevelOneIcon,
36
35
  ReactComponent as CaretSlimIcon,
37
- ReactComponent28 as CheckIcon,
36
+ ReactComponent27 as CheckIcon,
38
37
  ReactComponent2 as CloseIcon,
39
- ReactComponent12 as CodegenIcon,
38
+ ReactComponent11 as CodegenIcon,
40
39
  DiscordIcon,
41
40
  GitHubIcon,
42
- ReactComponent26 as GroupIcon,
43
- ReactComponent16 as HiveGatewayIcon,
44
- ReactComponent15 as HiveIcon,
45
- ReactComponent24 as HonourIcon,
41
+ ReactComponent25 as GroupIcon,
42
+ ReactComponent15 as HiveGatewayIcon,
43
+ ReactComponent14 as HiveIcon,
44
+ ReactComponent23 as HonourIcon,
46
45
  InformationCircleIcon,
47
- ReactComponent10 as LinkedInIcon,
48
- ReactComponent17 as ListIcon,
49
- ReactComponent13 as MeshIcon,
50
- ReactComponent3 as MoonIcon,
51
- ReactComponent4 as MoreIcon,
52
- ReactComponent18 as PaperIcon,
53
- ReactComponent21 as PencilIcon,
54
- ReactComponent20 as RightCornerIcon,
55
- ReactComponent5 as SearchIcon,
56
- ReactComponent6 as ShareIcon,
57
- ReactComponent25 as ShieldFlashIcon,
58
- ReactComponent19 as TargetIcon,
59
- ReactComponent9 as TwitterIcon,
60
- ReactComponent14 as YogaIcon,
61
- ReactComponent11 as YouTubeIcon
46
+ ReactComponent9 as LinkedInIcon,
47
+ ReactComponent16 as ListIcon,
48
+ ReactComponent12 as MeshIcon,
49
+ ReactComponent3 as MoreIcon,
50
+ ReactComponent17 as PaperIcon,
51
+ ReactComponent20 as PencilIcon,
52
+ ReactComponent19 as RightCornerIcon,
53
+ ReactComponent4 as SearchIcon,
54
+ ReactComponent5 as ShareIcon,
55
+ ReactComponent24 as ShieldFlashIcon,
56
+ ReactComponent18 as TargetIcon,
57
+ ReactComponent8 as TwitterIcon,
58
+ ReactComponent13 as YogaIcon,
59
+ ReactComponent10 as YouTubeIcon
62
60
  };
@@ -2,12 +2,11 @@ export { Anchor } from './anchor.mjs';
2
2
  export { Button } from './button.mjs';
3
3
  export { CardsColorful } from './cards-colorful.mjs';
4
4
  export { FeatureList } from './feature-list.mjs';
5
- export { Footer } from './footer.mjs';
6
5
  export { HeroGradient } from './hero-gradient.mjs';
7
6
  export { HeroIllustration } from './hero-illustration.mjs';
8
7
  export { HeroMarketplace } from './hero-marketplace.mjs';
9
8
  export { HeroVideo } from './hero-video.mjs';
10
- export { ReactComponent as AccountBox, ReactComponent as AppsIcon, ReactComponent as ArchDecoration, ReactComponent as ArchDecorationGradientDefs, ReactComponent as ArrowIcon, ReactComponent as BardIcon, ReactComponent as CSAStarLevelOneIcon, ReactComponent as CaretSlimIcon, ReactComponent as CheckIcon, ReactComponent as CloseIcon, ReactComponent as CodegenIcon, ReactComponent as GroupIcon, ReactComponent as HighlightDecoration, ReactComponent as HiveGatewayIcon, ReactComponent as HiveIcon, ReactComponent as HonourIcon, ReactComponent as LargeHiveIconDecoration, ReactComponent as LinkedInIcon, ReactComponent as ListIcon, ReactComponent as MeshIcon, ReactComponent as MoonIcon, ReactComponent as MoreIcon, ReactComponent as PaperIcon, ReactComponent as PencilIcon, ReactComponent as RightCornerIcon, ReactComponent as SearchIcon, ReactComponent as ShareIcon, ReactComponent as ShieldFlashIcon, ReactComponent as TargetIcon, ReactComponent as TwitterIcon, ReactComponent as YogaIcon, ReactComponent as YouTubeIcon } from '../logos/angular.mjs';
9
+ export { ReactComponent as AccountBox, ReactComponent as AppsIcon, ReactComponent as ArchDecoration, ReactComponent as ArchDecorationGradientDefs, ReactComponent as ArrowIcon, ReactComponent as BardIcon, ReactComponent as CSAStarLevelOneIcon, ReactComponent as CaretSlimIcon, ReactComponent as CheckIcon, ReactComponent as CloseIcon, ReactComponent as CodegenIcon, ReactComponent as GroupIcon, ReactComponent as HighlightDecoration, ReactComponent as HiveGatewayIcon, ReactComponent as HiveIcon, ReactComponent as HonourIcon, ReactComponent as LargeHiveIconDecoration, ReactComponent as LinkedInIcon, ReactComponent as ListIcon, ReactComponent as MeshIcon, ReactComponent as MoreIcon, ReactComponent as PaperIcon, ReactComponent as PencilIcon, ReactComponent as RightCornerIcon, ReactComponent as SearchIcon, ReactComponent as ShareIcon, ReactComponent as ShieldFlashIcon, ReactComponent as TargetIcon, ReactComponent as TwitterIcon, ReactComponent as YogaIcon, ReactComponent as YouTubeIcon } from '../logos/angular.mjs';
11
10
  export { DiscordIcon, GitHubIcon, InformationCircleIcon } from 'nextra/icons';
12
11
  export { Image } from './image.mjs';
13
12
  export { InfoList } from './info-list.mjs';
@@ -15,10 +14,9 @@ export { LegacyPackageCmd } from './legacy-package-cmd.mjs';
15
14
  export { MarketplaceList } from './marketplace-list.mjs';
16
15
  export { MarketplaceSearch } from './marketplace-search.mjs';
17
16
  export { NPMBadge } from './npm-badge.mjs';
18
- export { getNavbarLogo } from './guild-navbar-logo.mjs';
19
17
  export { GetYourAPIGameRightSection } from './get-your-api-game-right-section.mjs';
20
18
  export { HiveNavigation, HiveNavigationProps } from './hive-navigation/index.mjs';
21
- export { HiveFooter } from './hive-footer.mjs';
19
+ export { HiveFooter } from './hive-footer/index.mjs';
22
20
  export { AncillaryProductCard, MainProductCard, ToolsAndLibrariesCards } from './tools-and-libraries-cards/index.mjs';
23
21
  export { DecorationIsolation } from './decorations/index.mjs';
24
22
  export { CallToAction, CallToActionProps } from './call-to-action.mjs';
@@ -36,5 +34,6 @@ import 'next/image';
36
34
  import 'next/link';
37
35
  import 'react-player';
38
36
  import 'react/jsx-runtime';
37
+ import 'nextra/components';
39
38
  import '../products.mjs';
40
39
  import '@giscus/react';
@@ -2,7 +2,6 @@ import { Anchor } from "./anchor";
2
2
  import { Button } from "./button";
3
3
  import { CardsColorful } from "./cards-colorful";
4
4
  import { FeatureList } from "./feature-list";
5
- import { Footer } from "./footer";
6
5
  import { HeroGradient } from "./hero-gradient";
7
6
  import { HeroIllustration } from "./hero-illustration";
8
7
  import { HeroMarketplace } from "./hero-marketplace";
@@ -14,10 +13,9 @@ import { LegacyPackageCmd } from "./legacy-package-cmd";
14
13
  import { MarketplaceList } from "./marketplace-list";
15
14
  import { MarketplaceSearch } from "./marketplace-search";
16
15
  import { NPMBadge } from "./npm-badge";
17
- import { getNavbarLogo } from "./guild-navbar-logo";
18
16
  import { GetYourAPIGameRightSection } from "./get-your-api-game-right-section";
19
17
  import { HiveNavigation, GraphQLConfCard } from "./hive-navigation";
20
- import { HiveFooter } from "./hive-footer";
18
+ import { HiveFooter } from "./hive-footer/index.js";
21
19
  import {
22
20
  ToolsAndLibrariesCards,
23
21
  MainProductCard,
@@ -37,7 +35,6 @@ export {
37
35
  Button,
38
36
  CardsColorful,
39
37
  FeatureList,
40
- Footer,
41
38
  GetYourAPIGameRightSection,
42
39
  Giscus,
43
40
  GraphQLConfCard,
@@ -54,6 +51,5 @@ export {
54
51
  MarketplaceList,
55
52
  MarketplaceSearch,
56
53
  NPMBadge,
57
- ToolsAndLibrariesCards,
58
- getNavbarLogo
54
+ ToolsAndLibrariesCards
59
55
  };
@@ -50,7 +50,7 @@ const SchemaPage = ({
50
50
  }) => {
51
51
  const [schemaObj, setSchemaObj] = useState(() => buildSchema(editorData[0].schema));
52
52
  return /* @__PURE__ */ jsxs("section", { className: "w-full bg-white dark:bg-dark", children: [
53
- /* @__PURE__ */ jsxs("div", { className: "container flex max-w-[90rem] flex-col justify-between py-6 md:flex-row md:gap-16", children: [
53
+ /* @__PURE__ */ jsxs("div", { className: "container flex max-w-[90rem] justify-between py-6 max-md:flex-col md:gap-16", children: [
54
54
  /* @__PURE__ */ jsxs("span", { className: "pb-6 md:pb-0", children: [
55
55
  /* @__PURE__ */ jsx("h2", { className: "mb-4 mt-0 text-xl font-bold text-black md:text-2xl dark:text-gray-50", children: schemaName }),
56
56
  /* @__PURE__ */ jsx(TagsContainer, { children: tags.map((tagName) => /* @__PURE__ */ jsx(Tag, { children: tagName }, tagName)) })
@@ -1,6 +1,7 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { ComponentProps } from 'react';
2
3
 
3
- type StudProps = React.HTMLAttributes<HTMLElement>;
4
+ type StudProps = ComponentProps<'div'>;
4
5
  declare function Stud(props: StudProps): react_jsx_runtime.JSX.Element;
5
6
 
6
7
  export { Stud, type StudProps };
package/dist/index.d.mts CHANGED
@@ -1,16 +1,15 @@
1
1
  export { Navbar, NotFoundPage, useConfig, useTheme, useThemeConfig } from 'nextra-theme-docs';
2
- export { Bleed, Callout, Cards, Code, Collapse, FileTree, Mermaid, Search, Steps, Table, Tabs } from 'nextra/components';
2
+ export { Banner, Bleed, Callout, Cards, Code, Collapse, FileTree, Mermaid, Search, Steps, Table, Tabs } from 'nextra/components';
3
3
  export { useMounted } from 'nextra/hooks';
4
4
  export { Anchor } from './components/anchor.mjs';
5
5
  export { Button } from './components/button.mjs';
6
6
  export { CardsColorful } from './components/cards-colorful.mjs';
7
7
  export { FeatureList } from './components/feature-list.mjs';
8
- export { Footer } from './components/footer.mjs';
9
8
  export { HeroGradient } from './components/hero-gradient.mjs';
10
9
  export { HeroIllustration } from './components/hero-illustration.mjs';
11
10
  export { HeroMarketplace } from './components/hero-marketplace.mjs';
12
11
  export { HeroVideo } from './components/hero-video.mjs';
13
- export { ReactComponent as AccountBox, ReactComponent as AngularLogo, ReactComponent as AppsIcon, ReactComponent as ArchDecoration, ReactComponent as ArchDecorationGradientDefs, ReactComponent as ArrowIcon, ReactComponent as BardIcon, ReactComponent as CSAStarLevelOneIcon, ReactComponent as CaretSlimIcon, ReactComponent as CheckIcon, ReactComponent as CloseIcon, ReactComponent as CodeGeneratorLogo, ReactComponent as CodegenIcon, ReactComponent as ConductorLogo, ReactComponent as ConfigLogo, ReactComponent as FetsLogo, ReactComponent as GraphQLFoundationLogo, ReactComponent as GroupIcon, ReactComponent as GuildLogo, ReactComponent as HeltinLogo, ReactComponent as HighlightDecoration, ReactComponent as HiveCombinationMark, ReactComponent as HiveGatewayIcon, ReactComponent as HiveIcon, ReactComponent as HonourIcon, ReactComponent as KitQLLogo, ReactComponent as LargeHiveIconDecoration, ReactComponent as LinkedInIcon, ReactComponent as ListIcon, ReactComponent as MeshIcon, ReactComponent as MeshLogo, ReactComponent as ModulesLogo, ReactComponent as MoonIcon, ReactComponent as MoreIcon, ReactComponent as NextraLogo, ReactComponent as PaperIcon, ReactComponent as PencilIcon, ReactComponent as RightCornerIcon, ReactComponent as SSELogo, ReactComponent as SearchIcon, ReactComponent as ShareIcon, ReactComponent as ShieldFlashIcon, ReactComponent as StitchingLogo, ReactComponent as TargetIcon, ReactComponent as TheGuild, ReactComponent as ToolsLogo, ReactComponent as TwitterIcon, ReactComponent as WSLogo, ReactComponent as WhatsAppLogo, ReactComponent as YogaIcon, ReactComponent as YogaLogo, ReactComponent as YouTubeIcon } from './logos/angular.mjs';
12
+ export { ReactComponent as AccountBox, ReactComponent as AngularLogo, ReactComponent as AppsIcon, ReactComponent as ArchDecoration, ReactComponent as ArchDecorationGradientDefs, ReactComponent as ArrowIcon, ReactComponent as BardIcon, ReactComponent as CSAStarLevelOneIcon, ReactComponent as CaretSlimIcon, ReactComponent as CheckIcon, ReactComponent as CloseIcon, ReactComponent as CodeGeneratorLogo, ReactComponent as CodegenIcon, ReactComponent as ConductorLogo, ReactComponent as ConfigLogo, ReactComponent as FetsLogo, ReactComponent as GraphQLFoundationLogo, ReactComponent as GroupIcon, ReactComponent as GuildLogo, ReactComponent as HeltinLogo, ReactComponent as HighlightDecoration, ReactComponent as HiveCombinationMark, ReactComponent as HiveGatewayIcon, ReactComponent as HiveIcon, ReactComponent as HonourIcon, ReactComponent as KitQLLogo, ReactComponent as LargeHiveIconDecoration, ReactComponent as LinkedInIcon, ReactComponent as ListIcon, ReactComponent as MeshIcon, ReactComponent as MeshLogo, ReactComponent as ModulesLogo, ReactComponent as MoreIcon, ReactComponent as NextraLogo, ReactComponent as PaperIcon, ReactComponent as PencilIcon, ReactComponent as RightCornerIcon, ReactComponent as SSELogo, ReactComponent as SearchIcon, ReactComponent as ShareIcon, ReactComponent as ShieldFlashIcon, ReactComponent as StitchingLogo, ReactComponent as TargetIcon, ReactComponent as TheGuild, ReactComponent as ToolsLogo, ReactComponent as TwitterIcon, ReactComponent as WSLogo, ReactComponent as WhatsAppLogo, ReactComponent as YogaIcon, ReactComponent as YogaLogo, ReactComponent as YouTubeIcon } from './logos/angular.mjs';
14
13
  export { DiscordIcon, GitHubIcon, InformationCircleIcon } from 'nextra/icons';
15
14
  export { Image } from './components/image.mjs';
16
15
  export { InfoList } from './components/info-list.mjs';
@@ -18,10 +17,9 @@ export { LegacyPackageCmd } from './components/legacy-package-cmd.mjs';
18
17
  export { MarketplaceList } from './components/marketplace-list.mjs';
19
18
  export { MarketplaceSearch } from './components/marketplace-search.mjs';
20
19
  export { NPMBadge } from './components/npm-badge.mjs';
21
- export { getNavbarLogo } from './components/guild-navbar-logo.mjs';
22
20
  export { GetYourAPIGameRightSection } from './components/get-your-api-game-right-section.mjs';
23
21
  export { HiveNavigation, HiveNavigationProps } from './components/hive-navigation/index.mjs';
24
- export { HiveFooter } from './components/hive-footer.mjs';
22
+ export { HiveFooter } from './components/hive-footer/index.mjs';
25
23
  export { AncillaryProductCard, MainProductCard, ToolsAndLibrariesCards } from './components/tools-and-libraries-cards/index.mjs';
26
24
  export { DecorationIsolation } from './components/decorations/index.mjs';
27
25
  export { CallToAction, CallToActionProps } from './components/call-to-action.mjs';
@@ -32,8 +30,8 @@ export { Stud, StudProps } from './components/stud.mjs';
32
30
  export { ExploreMainProductCards, ExploreMainProductCardsProps } from './components/explore-main-product-cards.mjs';
33
31
  export { Giscus } from './components/giscus.mjs';
34
32
  export { PRODUCTS } from './products.mjs';
35
- export { IEditorProps, IFeatureListProps, IFooterExtendedProps, IHeroGradientProps, IHeroIllustrationProps, IHeroMarketplaceProps, IHeroVideoProps, IInfoListProps, ILink, IMarketplaceItemProps, IMarketplaceItemsProps, IMarketplaceListProps, IMarketplaceSearchProps, ISchemaPageProps } from './types/components.mjs';
36
- export { AngularLettermark, ConductorLettermark, ConfigLettermark, EnvelopLettermark, FetsLettermark, GraphQLESlintLettermark, HeltinLettermark, InspectorLettermark, KitQLLettermark, LettermarkLogoProps, ModulesLettermark, SSELettermark, ScalarsLettermark, SofaLettermark, StitchingLettermark, ToolsLettermark, WSLettermark, WhatsAppLettermark } from './logos/index.mjs';
33
+ export { IEditorProps, IFeatureListProps, IHeroGradientProps, IHeroIllustrationProps, IHeroMarketplaceProps, IHeroVideoProps, IInfoListProps, ILink, IMarketplaceItemProps, IMarketplaceItemsProps, IMarketplaceListProps, IMarketplaceSearchProps, ISchemaPageProps } from './types/components.mjs';
34
+ export { AngularLettermark, ConductorLettermark, ConfigLettermark, EnvelopLettermark, FetsLettermark, GraphQLESlintLettermark, HeltinLettermark, InspectorLettermark, KitQLLettermark, ModulesLettermark, SSELettermark, ScalarsLettermark, SofaLettermark, StitchingLettermark, ToolsLettermark, WSLettermark, WhatsAppLettermark } from './logos/index.mjs';
37
35
  export { cn } from './cn.mjs';
38
36
  export { GraphQLConfCard, GraphQLConfCardProps } from './components/hive-navigation/graphql-conf-card.mjs';
39
37
  import 'react';
package/dist/index.js CHANGED
@@ -10,7 +10,8 @@ import {
10
10
  Table,
11
11
  Bleed,
12
12
  Collapse,
13
- Search
13
+ Search,
14
+ Banner
14
15
  } from "nextra/components";
15
16
  import { useMounted } from "nextra/hooks";
16
17
  export * from "./components";
@@ -19,6 +20,7 @@ export * from "./types/components";
19
20
  export * from "./logos";
20
21
  import { cn } from "./cn";
21
22
  export {
23
+ Banner,
22
24
  Bleed,
23
25
  Callout,
24
26
  Cards,
@@ -1,5 +1,5 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
- const SvgGuild = (props) => /* @__PURE__ */ jsx("svg", { width: 51, height: 54, viewBox: "0 0 51 54", fill: "currentColor", ...props, children: /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.06194 20.2745C2.68522 20.4867 3.35002 20.6073 4.04393 20.6073C4.6672 20.6073 5.26838 20.5117 5.83612 20.3391V36.7481C5.83612 37.328 6.14561 37.8684 6.64488 38.1582L22.3391 47.2835C23.0814 46.4108 24.1808 45.8554 25.4084 45.8554C26.7446 45.8554 27.927 46.5134 28.6639 47.5218C28.6769 47.5403 28.6909 47.5576 28.7039 47.5756C28.7557 47.6494 28.8041 47.7248 28.8511 47.8026L28.9049 47.891C28.9465 47.9626 28.9849 48.0355 29.0214 48.1093C29.0414 48.1489 29.0603 48.1891 29.0792 48.2294C29.1105 48.2978 29.14 48.3673 29.1681 48.4378C29.1881 48.4882 29.2059 48.5388 29.2237 48.5899C29.2462 48.6544 29.2684 48.7195 29.2873 48.7852C29.3056 48.8477 29.3202 48.9107 29.3359 48.9737L29.3762 49.1513C29.3918 49.23 29.4021 49.3097 29.4129 49.3902C29.4188 49.4379 29.428 49.4847 29.4323 49.5324C29.4448 49.6627 29.4523 49.7941 29.4523 49.9277C29.4523 50.1406 29.4313 50.3474 29.3994 50.5516L29.3881 50.6275C29.0576 52.5406 27.4007 54 25.4084 54C23.6318 54 22.1227 52.8386 21.5809 51.2314L4.7578 41.4502C3.08905 40.4806 2.06194 38.6876 2.06194 36.7481V20.2745ZM46.0991 10.2908C48.3291 10.2908 50.1428 12.1173 50.1428 14.3631C50.1428 15.5848 49.6037 16.6794 48.755 17.4265V36.7481C48.755 38.6876 47.7279 40.4806 46.0591 41.4502L31.6051 49.8539C31.5889 48.479 31.1274 47.2135 30.3619 46.1876L44.1722 38.1582C44.6713 37.8684 44.9809 37.328 44.9809 36.7481V18.2736C43.2938 17.7838 42.0554 16.2179 42.0554 14.3631C42.0554 13.4601 42.3524 12.6277 42.8485 11.9517C42.856 11.9409 42.8641 11.9306 42.8717 11.9197C42.9655 11.7948 43.0657 11.6743 43.1725 11.5608L43.187 11.545C43.4086 11.3127 43.6567 11.1079 43.9274 10.9337C43.9553 10.9152 43.985 10.8984 44.0136 10.8804C44.1209 10.8158 44.2303 10.755 44.3435 10.7002C44.3765 10.6844 44.4094 10.6671 44.4427 10.6519C44.5846 10.5878 44.7291 10.5286 44.879 10.4814C44.879 10.4819 44.8796 10.4814 44.879 10.4814L45.173 10.3994C45.4705 10.3287 45.7805 10.2908 46.0991 10.2908ZM40.5727 19.0708V32.5386C40.5727 34.1339 39.7202 35.6206 38.3486 36.4181L27.5398 42.696L26.5424 43.2466L26.5543 42.0944V37.3194L35.4506 32.1471V27.4102L27.8779 25.24L40.5727 19.0708ZM10.2444 19.0627L15.3665 21.593V32.1467L24.1279 37.2409V43.1973L12.4684 36.4189C11.0968 35.6206 10.2444 34.1339 10.2444 32.5388V19.0627ZM23.1844 9.96788C24.5349 9.18328 26.2818 9.18328 27.6325 9.96788L39.4904 16.8956L38.3636 17.4327L33.9644 19.6061L25.4084 14.6315L16.8523 19.6061L11.3442 16.8843L12.4026 16.2425C12.4123 16.2338 12.4398 16.2153 12.4694 16.1985L23.1844 9.96788ZM25.4083 0C26.3394 0 27.27 0.242165 28.1041 0.72704L42.644 9.18112C41.5737 9.9076 40.7455 10.9637 40.2899 12.2006L26.217 4.01908C25.9718 3.87572 25.6919 3.80081 25.4083 3.80081C25.1248 3.80081 24.8454 3.87572 24.5995 4.01908L8.02283 13.6574C8.06272 13.887 8.08753 14.1216 8.08753 14.3632C8.08753 16.1154 6.98116 17.608 5.43643 18.1814C5.42457 18.1858 5.41217 18.1906 5.40031 18.1944C5.27792 18.2385 5.15392 18.2765 5.02666 18.3085L4.95065 18.328C4.83419 18.3551 4.71503 18.3764 4.59533 18.3931L4.49775 18.4079C4.3484 18.4246 4.19742 18.4356 4.04377 18.4356C3.87932 18.4356 3.71758 18.4225 3.55743 18.403C3.5143 18.3974 3.47225 18.3899 3.42965 18.3834C3.30673 18.3643 3.18595 18.34 3.06679 18.3101C3.03012 18.3008 2.99347 18.2921 2.95681 18.2819C2.64139 18.1922 2.3416 18.0679 2.06177 17.9088L1.82144 17.7607C0.725648 17.0318 0 15.7822 0 14.3632C0 12.1175 1.81431 10.2909 4.04377 10.2909C4.62229 10.2909 5.17117 10.4158 5.66881 10.6368L22.7124 0.72704C23.5465 0.242165 24.4777 0 25.4083 0Z" }) });
2
+ const SvgGuild = (props) => /* @__PURE__ */ jsx("svg", { width: 51, height: 54, viewBox: "0 0 51 54", fill: "currentColor", ...props, children: /* @__PURE__ */ jsx("path", { d: "M2.06194 20.2745C2.68522 20.4867 3.35002 20.6073 4.04393 20.6073C4.6672 20.6073 5.26838 20.5117 5.83612 20.3391V36.7481C5.83612 37.328 6.14561 37.8684 6.64488 38.1582L22.3391 47.2835C23.0814 46.4108 24.1808 45.8554 25.4084 45.8554C26.7446 45.8554 27.927 46.5134 28.6639 47.5218C28.6769 47.5403 28.6909 47.5576 28.7039 47.5756C28.7557 47.6494 28.8041 47.7248 28.8511 47.8026L28.9049 47.891C28.9465 47.9626 28.9849 48.0355 29.0214 48.1093C29.0414 48.1489 29.0603 48.1891 29.0792 48.2294C29.1105 48.2978 29.14 48.3673 29.1681 48.4378C29.1881 48.4882 29.2059 48.5388 29.2237 48.5899C29.2462 48.6544 29.2684 48.7195 29.2873 48.7852C29.3056 48.8477 29.3202 48.9107 29.3359 48.9737L29.3762 49.1513C29.3918 49.23 29.4021 49.3097 29.4129 49.3902C29.4188 49.4379 29.428 49.4847 29.4323 49.5324C29.4448 49.6627 29.4523 49.7941 29.4523 49.9277C29.4523 50.1406 29.4313 50.3474 29.3994 50.5516L29.3881 50.6275C29.0576 52.5406 27.4007 54 25.4084 54C23.6318 54 22.1227 52.8386 21.5809 51.2314L4.7578 41.4502C3.08905 40.4806 2.06194 38.6876 2.06194 36.7481V20.2745ZM46.0991 10.2908C48.3291 10.2908 50.1428 12.1173 50.1428 14.3631C50.1428 15.5848 49.6037 16.6794 48.755 17.4265V36.7481C48.755 38.6876 47.7279 40.4806 46.0591 41.4502L31.6051 49.8539C31.5889 48.479 31.1274 47.2135 30.3619 46.1876L44.1722 38.1582C44.6713 37.8684 44.9809 37.328 44.9809 36.7481V18.2736C43.2938 17.7838 42.0554 16.2179 42.0554 14.3631C42.0554 13.4601 42.3524 12.6277 42.8485 11.9517C42.856 11.9409 42.8641 11.9306 42.8717 11.9197C42.9655 11.7948 43.0657 11.6743 43.1725 11.5608L43.187 11.545C43.4086 11.3127 43.6567 11.1079 43.9274 10.9337C43.9553 10.9152 43.985 10.8984 44.0136 10.8804C44.1209 10.8158 44.2303 10.755 44.3435 10.7002C44.3765 10.6844 44.4094 10.6671 44.4427 10.6519C44.5846 10.5878 44.7291 10.5286 44.879 10.4814C44.879 10.4819 44.8796 10.4814 44.879 10.4814L45.173 10.3994C45.4705 10.3287 45.7805 10.2908 46.0991 10.2908ZM40.5727 19.0708V32.5386C40.5727 34.1339 39.7202 35.6206 38.3486 36.4181L27.5398 42.696L26.5424 43.2466L26.5543 42.0944V37.3194L35.4506 32.1471V27.4102L27.8779 25.24L40.5727 19.0708ZM10.2444 19.0627L15.3665 21.593V32.1467L24.1279 37.2409V43.1973L12.4684 36.4189C11.0968 35.6206 10.2444 34.1339 10.2444 32.5388V19.0627ZM23.1844 9.96788C24.5349 9.18328 26.2818 9.18328 27.6325 9.96788L39.4904 16.8956L38.3636 17.4327L33.9644 19.6061L25.4084 14.6315L16.8523 19.6061L11.3442 16.8843L12.4026 16.2425C12.4123 16.2338 12.4398 16.2153 12.4694 16.1985L23.1844 9.96788ZM25.4083 0C26.3394 0 27.27 0.242165 28.1041 0.72704L42.644 9.18112C41.5737 9.9076 40.7455 10.9637 40.2899 12.2006L26.217 4.01908C25.9718 3.87572 25.6919 3.80081 25.4083 3.80081C25.1248 3.80081 24.8454 3.87572 24.5995 4.01908L8.02283 13.6574C8.06272 13.887 8.08753 14.1216 8.08753 14.3632C8.08753 16.1154 6.98116 17.608 5.43643 18.1814C5.42457 18.1858 5.41217 18.1906 5.40031 18.1944C5.27792 18.2385 5.15392 18.2765 5.02666 18.3085L4.95065 18.328C4.83419 18.3551 4.71503 18.3764 4.59533 18.3931L4.49775 18.4079C4.3484 18.4246 4.19742 18.4356 4.04377 18.4356C3.87932 18.4356 3.71758 18.4225 3.55743 18.403C3.5143 18.3974 3.47225 18.3899 3.42965 18.3834C3.30673 18.3643 3.18595 18.34 3.06679 18.3101C3.03012 18.3008 2.99347 18.2921 2.95681 18.2819C2.64139 18.1922 2.3416 18.0679 2.06177 17.9088L1.82144 17.7607C0.725648 17.0318 0 15.7822 0 14.3632C0 12.1175 1.81431 10.2909 4.04377 10.2909C4.62229 10.2909 5.17117 10.4158 5.66881 10.6368L22.7124 0.72704C23.5465 0.242165 24.4777 0 25.4083 0Z" }) });
3
3
  export {
4
4
  SvgGuild as ReactComponent
5
5
  };