{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "hero-08",
  "title": "Hero 08",
  "description": "A simple hero block",
  "files": [
    {
      "path": "src/registry/blocks/radix/hero-08/components/hero.tsx",
      "content": "import { ArrowUpRight } from \"lucide-react\";\nimport { Button } from \"@/registry/bases/radix/ui/button\";\nimport { Logo01, Logo02, Logo03, Logo04 } from \"./logos\";\nimport Navbar from \"./navbar\";\n\nconst Hero = () => {\n  return (\n    <div>\n      <Navbar />\n\n      <div className=\"mx-auto flex max-w-5xl flex-col items-center px-6 py-12 text-center\">\n        <h2 className=\"text-balance font-medium text-4xl leading-[1.4] tracking-tighter sm:text-5xl md:text-6xl lg:text-7xl\">\n          Beautifully Designed{\" \"}\n          <span className=\"inline-block rounded-md bg-primary px-1.5 py-0.5 text-primary-foreground leading-[1.1] tracking-tight sm:rounded-lg sm:px-3.5\">\n            Premium\n          </span>{\" \"}\n          Shadcn Blocks\n        </h2>\n        <p className=\"mt-6 text-balance text-center text-muted-foreground text-xl tracking-[-0.01em] sm:text-2xl sm:leading-normal md:text-3xl\">\n          A collection of beautifully designed components that you can use to\n          build your next project.\n        </p>\n        <div className=\"mx-auto mt-10 flex w-full max-w-xs flex-col items-center justify-center gap-4 sm:flex-row\">\n          <Button className=\"w-full sm:w-auto\" size=\"lg\">\n            Get Started <ArrowUpRight />\n          </Button>\n          <Button className=\"w-full sm:w-auto\" size=\"lg\" variant=\"outline\">\n            Learn More\n          </Button>\n        </div>\n\n        <div className=\"mt-24 flex flex-col items-center gap-4\">\n          <p className=\"font-medium text-muted-foreground text-sm uppercase\">\n            Trusted by engineers at\n          </p>\n          <div className=\"mx-auto mt-4 grid max-w-5xl grid-cols-2 place-items-center gap-6 text-foreground/70 sm:grid-cols-3 sm:gap-x-10 sm:gap-y-12 md:grid-cols-4\">\n            <Logo01 className=\"h-7 sm:h-8\" />\n            <Logo02 className=\"h-7 sm:h-8\" />\n            <Logo03 className=\"h-7 sm:h-8\" />\n            <Logo04 className=\"h-7 sm:h-8\" />\n          </div>\n        </div>\n      </div>\n    </div>\n  );\n};\n\nexport default Hero;\n",
      "type": "registry:component"
    },
    {
      "path": "src/registry/blocks/radix/hero-08/components/navbar.tsx",
      "content": "import { ArrowUpRight, Menu, Wheat, X } from \"lucide-react\";\nimport Link from \"next/link\";\nimport { Button } from \"@/registry/bases/radix/ui/button\";\nimport {\n  Popover,\n  PopoverContent,\n  PopoverTrigger,\n} from \"@/registry/bases/radix/ui/popover\";\nimport { NavMenu } from \"./nav-menu\";\n\nconst Navbar = () => {\n  return (\n    <div className=\"h-16 border-b bg-background px-6\">\n      <nav className=\"mx-auto flex h-full max-w-screen-xl items-center justify-between\">\n        <div className=\"flex items-center gap-4\">\n          {/* Logo */}\n          <Link className=\"flex items-center gap-3\" href=\"/\">\n            <Wheat />\n            <span className=\"font-bold text-xl\">Bloxxee</span>\n          </Link>\n        </div>\n\n        {/* Desktop navigation menu */}\n        <div className=\"hidden md:flex\">\n          <NavMenu />\n        </div>\n\n        <div className=\"flex items-center gap-4\">\n          <div className=\"flex items-center gap-2\">\n            <Button>\n              Sign Up <ArrowUpRight />\n            </Button>\n            <Button className=\"hidden sm:inline-flex\" variant=\"secondary\">\n              Sign In\n            </Button>\n          </div>\n\n          {/* Mobile navigation menu */}\n          <Popover>\n            <PopoverTrigger className=\"group md:hidden\">\n              <Menu className=\"group-data-[state=open]:hidden\" />\n              <X className=\"hidden group-data-[state=open]:block\" />\n            </PopoverTrigger>\n            <PopoverContent\n              className=\"!animate-none h-[calc(100svh-4rem)] w-screen rounded-none border-none bg-background\"\n              sideOffset={20}\n            >\n              <NavMenu orientation=\"vertical\" />\n            </PopoverContent>\n          </Popover>\n        </div>\n      </nav>\n    </div>\n  );\n};\n\nexport default Navbar;\n",
      "type": "registry:component"
    },
    {
      "path": "src/registry/blocks/radix/hero-08/components/nav-menu.tsx",
      "content": "\"use client\";\n\nimport Link from \"next/link\";\nimport type { ComponentProps } from \"react\";\nimport {\n  NavigationMenu,\n  NavigationMenuItem,\n  NavigationMenuLink,\n  NavigationMenuList,\n  navigationMenuTriggerStyle,\n} from \"@/registry/bases/radix/ui/navigation-menu\";\nimport { cn } from \"@/lib/utils\";\n\nconst links = [\n  {\n    href: \"/\",\n    label: \"Home\",\n  },\n  {\n    href: \"#components\",\n    label: \"Components\",\n  },\n  {\n    href: \"#blog\",\n    label: \"Blog\",\n  },\n  {\n    href: \"#about\",\n    label: \"About\",\n  },\n];\n\nexport const NavMenu = ({\n  className,\n  ...props\n}: ComponentProps<typeof NavigationMenu>) => {\n  const { orientation } = props;\n\n  return (\n    <NavigationMenu {...props}>\n      <NavigationMenuList\n        className={cn({\n          \"flex-col items-start gap-4\": orientation === \"vertical\",\n        })}\n      >\n        {links.map((link) => (\n          <NavigationMenuItem key={link.href}>\n            <NavigationMenuLink\n              asChild\n              className={navigationMenuTriggerStyle({\n                className: cn({ \"text-xl\": orientation === \"vertical\" }),\n              })}\n            >\n              <Link href={link.href}>{link.label}</Link>\n            </NavigationMenuLink>\n          </NavigationMenuItem>\n        ))}\n      </NavigationMenuList>\n    </NavigationMenu>\n  );\n};\n",
      "type": "registry:component"
    },
    {
      "path": "src/registry/blocks/radix/hero-08/components/logos.tsx",
      "content": "import type { SVGProps } from \"react\";\n\nexport const Logo01 = (props: SVGProps<SVGSVGElement>) => (\n  <svg\n    fill=\"currentColor\"\n    viewBox=\"0 0 760 200\"\n    xmlns=\"http://www.w3.org/2000/svg\"\n    {...props}\n  >\n    <path d=\"M98.34 79.23C95.6384 79.1434 92.9481 79.6156 90.4375 80.6171C87.9269 81.6185 85.6502 83.1277 83.75 85.05C79.9167 88.93 78 93.9134 78 100C78 106.087 79.9133 111.087 83.74 115C85.6387 116.924 87.9152 118.435 90.4261 119.436C92.9371 120.438 95.6281 120.909 98.33 120.82C101.043 120.904 103.745 120.431 106.268 119.43C108.791 118.429 111.082 116.921 113 115C116.873 111.127 118.81 106.127 118.81 100C118.81 93.8734 116.873 88.8734 113 85C111.078 83.091 108.786 81.5946 106.265 80.6025C103.745 79.6103 101.048 79.1433 98.34 79.23Z\" />\n    <path d=\"M101 35C88.1442 35 75.5771 38.8122 64.8879 45.9545C54.1987 53.0968 45.8675 63.2484 40.9478 75.1256C36.0281 87.0028 34.7409 100.072 37.249 112.681C39.757 125.29 45.9477 136.872 55.0381 145.962C64.1285 155.052 75.7104 161.243 88.3191 163.751C100.928 166.259 113.997 164.972 125.874 160.052C137.752 155.132 147.903 146.801 155.046 136.112C162.188 125.423 166 112.856 166 100C165.979 82.7674 159.124 66.2467 146.939 54.0615C134.753 41.8762 118.233 35.0212 101 35ZM137.82 136.83H118.82V128.14C113.133 135.313 105.133 138.897 94.82 138.89C85 138.89 76.5767 135.133 69.55 127.62C62.5233 120.107 59.0067 110.9 59 100C59 89.1 62.51 79.8934 69.53 72.38C76.55 64.8667 84.9733 61.11 94.8 61.11C105.113 61.11 113.113 64.6934 118.8 71.86V63.17H137.8L137.82 136.83Z\" />\n    <path d=\"M201 100C201 92.57 194.41 86 192.83 79C191.2 71.82 194.24 63 191.12 56.56C188 50.12 179.12 46.9 174.63 41.24C170.14 35.58 169 26.35 163.35 21.81C157.7 17.27 148.45 18.3 141.87 15.13C135.29 11.96 130.43 4.13002 123.26 2.49002C116.26 0.910022 108.43 5.83002 101 5.83002C93.57 5.83002 85.69 0.910022 78.74 2.49002C71.57 4.12002 66.61 12 60.13 15.13C53.65 18.26 44.3 17.3 38.65 21.81C33 26.32 31.9 35.6 27.37 41.28C22.84 46.96 14.06 50 10.88 56.6C7.7 63.2 10.8 71.86 9.17 79C7.59 86 1 92.57 1 100C1 107.43 7.59 114 9.17 121C10.8 128.18 7.76 137 10.88 143.44C14 149.88 22.88 153.1 27.37 158.76C31.86 164.42 32.97 173.69 38.65 178.23C44.33 182.77 53.55 181.74 60.13 184.91C66.71 188.08 71.57 195.91 78.74 197.55C85.74 199.13 93.57 194.21 101 194.21C108.43 194.21 116.31 199.13 123.26 197.55C130.43 195.92 135.39 188.03 141.87 184.91C148.35 181.79 157.7 182.74 163.35 178.23C169 173.72 170.1 164.44 174.63 158.76C179.16 153.08 187.94 150.02 191.12 143.44C194.3 136.86 191.2 128.18 192.83 121C194.41 114 201 107.43 201 100ZM101 169C87.3531 169 74.0126 164.953 62.6657 157.371C51.3187 149.79 42.4748 139.013 37.2523 126.405C32.0299 113.797 30.6634 99.9235 33.3258 86.5388C35.9882 73.1541 42.5598 60.8595 52.2096 51.2097C61.8595 41.5598 74.1541 34.9882 87.5388 32.3258C100.923 29.6635 114.797 31.0299 127.405 36.2523C140.013 41.4748 150.79 50.3187 158.371 61.6657C165.953 73.0127 170 86.3531 170 100C169.981 118.294 162.706 135.834 149.77 148.77C136.834 161.706 119.294 168.981 101 169Z\" />\n    <path d=\"M456.051 54.8901C463.4 54.8901 469.945 56.4403 475.686 59.5406C481.428 62.5261 485.963 67.0618 489.293 73.1476C492.623 79.2334 494.288 86.6397 494.288 95.3665V151H478.787V97.6057C478.787 88.1899 476.433 81.0132 471.725 76.0757C467.132 71.0233 460.874 68.4971 452.951 68.4971C444.798 68.4971 438.31 71.1381 433.488 76.4201C428.665 81.5873 426.254 89.1085 426.254 98.9836V151H410.752V97.6057C410.752 88.1899 408.398 81.0132 403.69 76.0757C399.097 71.0233 392.839 68.4971 384.916 68.4971C376.763 68.4971 370.276 71.1381 365.453 76.4201C360.63 81.5873 358.219 89.1085 358.219 98.9836V151H342.545V56.6125H358.219V70.2195C361.319 65.2819 365.453 61.4927 370.62 58.8517C375.902 56.2106 381.701 54.8901 388.016 54.8901C395.939 54.8901 402.944 56.6699 409.03 60.2296C415.115 63.7892 419.651 69.0138 422.637 75.9034C425.278 69.2435 429.641 64.0763 435.727 60.4018C441.813 56.7274 448.587 54.8901 456.051 54.8901Z\" />\n    <path d=\"M631.4 71.9419C634.156 66.545 638.06 62.3539 643.113 59.3684C648.28 56.3829 654.538 54.8901 661.887 54.8901V71.0807H657.753C640.185 71.0807 631.4 80.6113 631.4 99.6725V151H615.727V56.6125H631.4V71.9419Z\" />\n    <path\n      clip-rule=\"evenodd\"\n      d=\"M663.789 103.462C663.789 93.8164 665.741 85.3766 669.645 78.1425C673.549 70.7936 678.889 65.1097 685.664 61.0908C692.553 57.0718 700.189 55.0624 708.571 55.0624C716.839 55.0624 724.016 56.8422 730.101 60.4018C736.187 63.9615 740.723 68.4397 743.708 73.8365V56.6125H759.555V151H743.708V133.432C740.608 138.943 735.958 143.536 729.757 147.211C723.671 150.77 716.552 152.55 708.399 152.55C700.017 152.55 692.438 150.483 685.664 146.35C678.889 142.216 673.549 136.417 669.645 128.953C665.741 121.49 663.789 112.992 663.789 103.462ZM743.708 103.634C743.708 96.5148 742.273 90.3142 739.402 85.0321C736.532 79.7501 732.628 75.7312 727.69 72.9753C722.867 70.1047 717.528 68.6693 711.672 68.6693C705.816 68.6693 700.476 70.0473 695.653 72.8031C690.831 75.5589 686.984 79.5779 684.113 84.8599C681.243 90.1419 679.807 96.3426 679.807 103.462C679.807 110.696 681.243 117.011 684.113 122.408C686.984 127.69 690.831 131.767 695.653 134.637C700.476 137.393 705.816 138.771 711.672 138.771C717.528 138.771 722.867 137.393 727.69 134.637C732.628 131.767 736.532 127.69 739.402 122.408C742.273 117.011 743.708 110.753 743.708 103.634Z\"\n      fill-rule=\"evenodd\"\n    />\n    <path\n      clip-rule=\"evenodd\"\n      d=\"M509.665 78.1425C505.761 85.3766 503.809 93.8164 503.809 103.462C503.809 112.992 505.761 121.49 509.665 128.953C513.569 136.417 518.908 142.216 525.683 146.35C532.458 150.483 540.036 152.55 548.419 152.55C556.571 152.55 563.691 150.77 569.777 147.211C575.977 143.536 580.628 138.943 583.728 133.432V151H599.574V56.6125H583.728V73.8365C580.742 68.4397 576.207 63.9615 570.121 60.4018C564.035 56.8422 556.859 55.0624 548.591 55.0624C540.209 55.0624 532.573 57.0718 525.683 61.0908C518.908 65.1097 513.569 70.7936 509.665 78.1425ZM579.422 85.0321C582.293 90.3142 583.728 96.5148 583.728 103.634C583.728 110.753 582.293 117.011 579.422 122.408C576.551 127.69 572.647 131.767 567.71 134.637C562.887 137.393 557.547 138.771 551.691 138.771C545.835 138.771 540.496 137.393 535.673 134.637C530.85 131.767 527.004 127.69 524.133 122.408C521.262 117.011 519.827 110.696 519.827 103.462C519.827 96.3426 521.262 90.1419 524.133 84.8599C527.004 79.5779 530.85 75.5589 535.673 72.8031C540.496 70.0473 545.835 68.6693 551.691 68.6693C557.547 68.6693 562.887 70.1047 567.71 72.9753C572.647 75.7312 576.551 79.7501 579.422 85.0321Z\"\n      fill-rule=\"evenodd\"\n    />\n    <path\n      clip-rule=\"evenodd\"\n      d=\"M236.482 78.1425C232.578 85.3766 230.626 93.8164 230.626 103.462C230.626 112.992 232.578 121.49 236.482 128.953C240.386 136.417 245.726 142.216 252.5 146.35C259.275 150.483 266.854 152.55 275.236 152.55C283.389 152.55 290.508 150.77 296.594 147.211C302.795 143.536 307.445 138.943 310.545 133.432V151H326.391V56.6125H310.545V73.8365C307.56 68.4397 303.024 63.9615 296.938 60.4018C290.853 56.8422 283.676 55.0624 275.408 55.0624C267.026 55.0624 259.39 57.0718 252.5 61.0908C245.726 65.1097 240.386 70.7936 236.482 78.1425ZM306.239 85.0321C309.11 90.3142 310.545 96.5148 310.545 103.634C310.545 110.753 309.11 117.011 306.239 122.408C303.369 127.69 299.465 131.767 294.527 134.637C289.704 137.393 284.365 138.771 278.509 138.771C272.653 138.771 267.313 137.393 262.49 134.637C257.668 131.767 253.821 127.69 250.95 122.408C248.08 117.011 246.644 110.696 246.644 103.462C246.644 96.3426 248.08 90.1419 250.95 84.8599C253.821 79.5779 257.668 75.5589 262.49 72.8031C267.313 70.0473 272.653 68.6693 278.509 68.6693C284.365 68.6693 289.704 70.1047 294.527 72.9753C299.465 75.7312 303.369 79.7501 306.239 85.0321Z\"\n      fill-rule=\"evenodd\"\n    />\n  </svg>\n);\n\nexport const Logo02 = (props: SVGProps<SVGSVGElement>) => (\n  <svg\n    fill=\"currentColor\"\n    viewBox=\"0 0 621 200\"\n    xmlns=\"http://www.w3.org/2000/svg\"\n    {...props}\n  >\n    <path d=\"M200 99.9999L170.54 49.3199H115.74L88.33 2.16992H29.46L0 52.8499L27.4 99.9999L0 147.15L29.46 197.83H88.33L115.74 150.68H170.54L200 99.9999ZM33.53 9.23992H84.26L109.61 52.8499L84.26 96.4599H33.53L8.18 52.8499L33.53 9.23992ZM84.26 190.76H33.53L8.18 147.15L33.53 103.54H84.26L109.61 147.17L84.26 190.76ZM115.74 143.61L90.39 99.9999L115.74 56.3899H166.47L191.82 99.9999L166.47 143.61H115.74Z\" />\n    <path d=\"M247.41 169.63H265.26C268.2 169.63 269.67 168.16 269.67 165.22V101.59C269.67 90.95 274.5 85.63 284.16 85.63H291.72C296.2 85.63 299.35 86.61 301.17 88.57C303.13 90.39 304.11 93.54 304.11 98.02V165.22C304.11 168.16 305.58 169.63 308.52 169.63H326.16C329.24 169.63 330.78 168.16 330.78 165.22V96.76C330.78 73.94 319.79 62.53 297.81 62.53H291.09C280.45 62.53 273.59 66.31 270.51 73.87H269.67V26.41C269.67 23.47 268.2 22 265.26 22H247.41C244.47 22 243 23.47 243 26.41V165.22C243 168.16 244.47 169.63 247.41 169.63Z\" />\n    <path\n      clip-rule=\"evenodd\"\n      d=\"M425.581 169.63H379.171C368.111 169.63 359.571 166.69 353.551 160.81C347.531 154.93 344.521 146.46 344.521 135.4V96.7598C344.521 85.6998 347.531 77.2298 353.551 71.3498C359.571 65.4698 368.111 62.5298 379.171 62.5298H395.761C406.821 62.5298 415.361 65.4698 421.381 71.3498C427.401 77.2298 430.411 85.6998 430.411 96.7598V123.43C430.411 126.37 428.941 127.84 426.001 127.84H373.291C371.611 127.84 370.771 128.61 370.771 130.15V134.77C370.771 139.11 371.681 142.26 373.501 144.22C375.462 146.04 378.681 146.95 383.161 146.95H425.581C428.521 146.95 429.991 148.49 429.991 151.57V165.43C429.991 166.97 429.641 168.09 428.941 168.79C428.382 169.35 427.261 169.63 425.581 169.63ZM373.291 109.99H401.851C403.391 109.99 404.161 109.22 404.161 107.68V97.5998C404.161 93.1198 403.251 89.9698 401.431 88.1498C399.611 86.3298 396.461 85.4198 391.981 85.4198H383.161C378.681 85.4198 375.531 86.3298 373.711 88.1498C371.891 89.9698 370.981 93.1198 370.981 97.5998V107.68C370.981 109.22 371.751 109.99 373.291 109.99Z\"\n      fill-rule=\"evenodd\"\n    />\n    <path d=\"M440.101 169.63H461.311C464.531 169.63 466.631 168.16 467.611 165.22L480.841 133.09H481.681L494.911 165.22C496.171 168.16 498.271 169.63 501.211 169.63H522.841C524.241 169.63 525.151 169.21 525.571 168.37C526.131 167.53 526.061 166.48 525.361 165.22L498.271 115.03L523.471 66.9398C525.291 63.9998 524.381 62.5298 520.741 62.5298H499.741C496.381 62.5298 494.211 63.9998 493.231 66.9398L481.681 98.8598H480.841L467.611 66.9398C466.631 63.9998 464.461 62.5298 461.101 62.5298H439.681C436.601 62.5298 435.761 63.9998 437.161 66.9398L463.621 115.03L437.161 165.22C435.481 168.16 436.461 169.63 440.101 169.63Z\" />\n    <path\n      clip-rule=\"evenodd\"\n      d=\"M567.343 169.63H572.383C576.723 169.63 580.853 168.72 584.773 166.9C588.693 164.94 591.423 162.07 592.963 158.29H593.803V165.22C593.803 168.16 595.273 169.63 598.213 169.63H615.853C618.933 169.63 620.473 168.16 620.473 165.22V66.9398C620.473 63.9998 618.933 62.5298 615.853 62.5298H567.343C556.283 62.5298 547.743 65.4698 541.723 71.3498C535.703 77.2298 532.693 85.6998 532.693 96.7598V135.4C532.693 146.46 535.703 154.93 541.723 160.81C547.743 166.69 556.283 169.63 567.343 169.63ZM593.803 87.9398V130.57C593.803 141.21 588.973 146.53 579.313 146.53H571.543C567.063 146.53 563.913 145.62 562.093 143.8C560.273 141.84 559.363 138.62 559.363 134.14V98.0198C559.363 93.5398 560.273 90.3898 562.093 88.5698C563.913 86.6098 567.063 85.6298 571.543 85.6298H591.283C592.963 85.6298 593.803 86.3998 593.803 87.9398Z\"\n      fill-rule=\"evenodd\"\n    />\n  </svg>\n);\n\nexport const Logo03 = (props: SVGProps<SVGSVGElement>) => (\n  <svg\n    fill=\"currentColor\"\n    viewBox=\"0 0 787 200\"\n    xmlns=\"http://www.w3.org/2000/svg\"\n    {...props}\n  >\n    <path d=\"M14.25 166.09C29.31 191.09 65.55 191.7 80.59 166.65C85.3517 158.716 88.0281 149.707 88.37 140.46L88.85 127.65C88.85 127.65 66 148.5 56.58 147.22C53.4 146.79 55.82 140.89 56.97 137.97C61.34 126.97 87.89 99.91 87.89 99.91C87.89 99.91 90 61.58 93.75 51.07C95.69 45.63 97.94 43.14 100 42.15C102.06 43.15 104.31 45.63 106.25 51.07C110 61.58 112.11 99.91 112.11 99.91C112.11 99.91 138.66 126.91 143.03 137.97C144.18 140.89 146.6 146.79 143.42 147.22C133.99 148.5 111.15 127.65 111.15 127.65L111.63 140.46C111.991 150.228 114.957 159.723 120.22 167.96C135.32 191.58 170.37 190.96 185.12 167.13C194.739 151.589 199.888 133.697 200 115.42C200.41 61.14 156.68 15.95 102.4 14.68C84.5069 14.2515 66.8266 18.6332 51.2044 27.3679C35.5821 36.1025 22.5904 48.8699 13.5851 64.3378C4.57987 79.8056 -0.108954 97.4069 0.00799474 115.305C0.124944 133.203 5.04338 150.741 14.25 166.09Z\" />\n    <mask\n      height=\"172\"\n      id=\"mask0_1113_4739\"\n      maskUnits=\"userSpaceOnUse\"\n      width=\"201\"\n      x=\"0\"\n      y=\"14\"\n    >\n      <path d=\"M14.25 166.09C29.31 191.09 65.55 191.7 80.59 166.65C85.3517 158.716 88.0281 149.707 88.37 140.46L88.85 127.65C88.85 127.65 66 148.5 56.58 147.22C53.4 146.79 55.82 140.89 56.97 137.97C61.34 126.97 87.89 99.91 87.89 99.91C87.89 99.91 90 61.58 93.75 51.07C95.69 45.63 97.94 43.14 100 42.15C102.06 43.15 104.31 45.63 106.25 51.07C110 61.58 112.11 99.91 112.11 99.91C112.11 99.91 138.66 126.91 143.03 137.97C144.18 140.89 146.6 146.79 143.42 147.22C133.99 148.5 111.15 127.65 111.15 127.65L111.63 140.46C111.991 150.228 114.957 159.723 120.22 167.96C135.32 191.58 170.37 190.96 185.12 167.13C194.739 151.589 199.888 133.697 200 115.42C200.41 61.14 156.68 15.95 102.4 14.68C84.5069 14.2515 66.8266 18.6332 51.2044 27.3679C35.5821 36.1025 22.5904 48.8699 13.5851 64.3378C4.57987 79.8056 -0.108954 97.4069 0.00799474 115.305C0.124944 133.203 5.04338 150.741 14.25 166.09Z\" />\n    </mask>\n    <g mask=\"url(#mask0_1113_4739)\">\n      <path d=\"M14.25 166.09C29.31 191.09 65.55 191.7 80.59 166.65C85.3517 158.716 88.0281 149.707 88.37 140.46L88.85 127.65C88.85 127.65 66 148.5 56.58 147.22C53.4 146.79 55.82 140.89 56.97 137.97C61.34 126.97 87.89 99.91 87.89 99.91C87.89 99.91 90 61.58 93.75 51.07C95.69 45.63 97.94 43.14 100 42.15C102.06 43.15 104.31 45.63 106.25 51.07C110 61.58 112.11 99.91 112.11 99.91C112.11 99.91 138.66 126.91 143.03 137.97C144.18 140.89 146.6 146.79 143.42 147.22C133.99 148.5 111.15 127.65 111.15 127.65L111.63 140.46C111.991 150.228 114.957 159.723 120.22 167.96C135.32 191.58 170.37 190.96 185.12 167.13C194.739 151.589 199.888 133.697 200 115.42C200.41 61.14 156.68 15.95 102.4 14.68C84.5069 14.2515 66.8266 18.6332 51.2044 27.3679C35.5821 36.1025 22.5904 48.8699 13.5851 64.3378C4.57987 79.8056 -0.108954 97.4069 0.00799474 115.305C0.124944 133.203 5.04338 150.741 14.25 166.09Z\" />\n    </g>\n    <path d=\"M289.52 87.2802H314.38V60.0002H289.52V29.2002L261.14 37.7802V60.0002H242V87.2802H261.14V133.04C261.14 162.74 274.56 174.4 314.38 170V144.26C298.1 145.14 289.52 144.92 289.52 133.04V87.2802Z\" />\n    <path\n      clip-rule=\"evenodd\"\n      d=\"M452.244 147.34C437.284 147.34 425.184 141.18 421.224 126.66H504.164C504.824 122.92 505.264 119.18 505.264 115C505.264 82.6599 482.164 56.9199 449.604 56.9199C415.064 56.9199 391.524 82.2199 391.524 115C391.524 147.78 414.844 173.08 451.804 173.08C472.924 173.08 489.424 164.5 499.764 149.54L476.884 136.34C472.044 142.72 463.244 147.34 452.244 147.34ZM476.884 104.66H420.784C424.084 90.5799 434.424 82.4399 449.604 82.4399C461.484 82.4399 473.364 88.8199 476.884 104.66Z\"\n      fill-rule=\"evenodd\"\n    />\n    <path\n      clip-rule=\"evenodd\"\n      d=\"M732.568 59.9999H704.188V72.9799C696.268 63.0799 684.388 56.9199 668.328 56.9199C639.068 56.9199 614.868 82.2199 614.868 115C614.868 147.78 639.068 173.08 668.328 173.08C684.388 173.08 696.268 166.92 704.188 157.02V170H732.568V59.9999ZM704.188 115C704.188 133.48 691.208 146.02 673.608 146.02C656.228 146.02 643.248 133.48 643.248 115C643.248 96.5199 656.228 83.9799 673.608 83.9799C691.208 83.9799 704.188 96.5199 704.188 115Z\"\n      fill-rule=\"evenodd\"\n    />\n    <path d=\"M749.503 154.16C749.503 164.5 757.863 172.86 768.203 172.86C778.543 172.86 786.903 164.5 786.903 154.16C786.903 143.82 778.543 135.46 768.203 135.46C757.863 135.46 749.503 143.82 749.503 154.16Z\" />\n    <path d=\"M586.56 60H617.8L576 170H543.66L501.86 60H533.1L559.72 137L586.56 60Z\" />\n    <path d=\"M357.889 78.9198C363.609 63.9598 377.469 57.7998 391.329 57.7998V89.4798C376.589 87.7198 357.889 94.3198 357.889 117.42V170H329.509V59.9998H357.889V78.9198Z\" />\n  </svg>\n);\n\nexport const Logo04 = (props: SVGProps<SVGSVGElement>) => (\n  <svg\n    fill=\"currentColor\"\n    viewBox=\"0 0 699 200\"\n    xmlns=\"http://www.w3.org/2000/svg\"\n    {...props}\n  >\n    <g clip-path=\"url(#clip0_1113_4725)\">\n      <path d=\"M136 36C136 55.8823 119.882 72 100 72C80.1178 72 64 55.8823 64 36C64 16.1177 80.1178 0 100 0C119.882 0 136 16.1177 136 36Z\" />\n      <path d=\"M4.38 62.6699C3.12 62.6699 1.87 62.6699 0.63 62.7699C0.212689 66.4419 0.00235673 70.1344 0 73.8299C0 128.83 44.77 173.45 100 173.45C101.26 173.45 102.5 173.45 103.75 173.36H105C157.91 170.76 200 127.21 200 73.8599C199.997 70.1647 199.79 66.4724 199.38 62.7999C146.47 65.3999 104.38 108.95 104.38 162.3C104.38 107.28 59.61 62.6699 4.38 62.6699Z\" />\n      <path d=\"M105.1 175.33H103.61C103.031 175.33 102.44 175.35 101.843 175.369C101.233 175.39 100.616 175.41 100 175.41C76.5101 175.416 53.7366 167.322 35.5201 152.491C17.3035 137.661 4.75827 117.003 0 94C1 152.72 45.4 200 100 200C154.56 200 198.91 152.77 200 94.08C195.468 116.247 183.677 136.271 166.49 150.986C149.302 165.701 127.701 174.267 105.1 175.33Z\" />\n      <path d=\"M621.135 62.5601C633.135 62.5601 642.855 66.2201 650.295 73.5401C657.735 80.7401 661.455 91.1801 661.455 104.86V163H645.255V107.2C645.255 97.3601 642.795 89.8601 637.875 84.7001C632.955 79.4201 626.235 76.7801 617.715 76.7801C609.075 76.7801 602.175 79.4801 597.015 84.8801C591.975 90.2801 589.455 98.1401 589.455 108.46V163H573.075V64.3601H589.455V78.4001C592.695 73.3601 597.075 69.4601 602.595 66.7001C608.235 63.9401 614.415 62.5601 621.135 62.5601Z\" />\n      <path d=\"M688.032 164.08C684.912 164.08 682.272 163 680.112 160.84C677.952 158.68 676.872 156.04 676.872 152.92C676.872 149.8 677.952 147.16 680.112 145C682.272 142.84 684.912 141.76 688.032 141.76C691.032 141.76 693.552 142.84 695.592 145C697.752 147.16 698.832 149.8 698.832 152.92C698.832 156.04 697.752 158.68 695.592 160.84C693.552 163 691.032 164.08 688.032 164.08Z\" />\n      <path\n        clip-rule=\"evenodd\"\n        d=\"M556.314 119.8C556.674 116.32 556.854 113.02 556.854 109.9C556.854 100.9 554.874 92.86 550.914 85.78C547.074 78.58 541.554 72.94 534.354 68.86C527.154 64.78 518.874 62.74 509.514 62.74C499.914 62.74 491.394 64.84 483.954 69.04C476.634 73.12 470.934 79 466.854 86.68C462.774 94.36 460.734 103.3 460.734 113.5C460.734 123.7 462.834 132.7 467.034 140.5C471.234 148.18 476.994 154.12 484.314 158.32C491.754 162.52 500.154 164.62 509.514 164.62C521.274 164.62 531.114 161.68 539.034 155.8C546.954 149.8 552.234 142.06 554.874 132.58H537.234C535.314 138.1 531.954 142.54 527.154 145.9C522.474 149.14 516.594 150.76 509.514 150.76C500.874 150.76 493.494 148.06 487.374 142.66C481.374 137.14 478.074 129.52 477.474 119.8H556.314ZM535.794 90.46C538.554 94.9 539.934 100.24 539.934 106.48H477.654C478.494 97.12 481.794 89.8 487.554 84.52C493.434 79.24 500.514 76.6 508.794 76.6C514.554 76.6 519.774 77.8 524.454 80.2C529.254 82.48 533.034 85.9 535.794 90.46Z\"\n        fill-rule=\"evenodd\"\n      />\n      <path d=\"M408.075 147.88L438.675 64.3601H456.135L417.435 163H398.355L359.655 64.3601H377.295L408.075 147.88Z\" />\n      <path\n        clip-rule=\"evenodd\"\n        d=\"M255.115 86.86C251.035 94.42 248.995 103.24 248.995 113.32C248.995 123.28 251.035 132.16 255.115 139.96C259.195 147.76 264.775 153.82 271.855 158.14C278.935 162.46 286.855 164.62 295.615 164.62C304.135 164.62 311.575 162.76 317.935 159.04C324.415 155.2 329.275 150.4 332.515 144.64V163H349.075V64.36H332.515V82.36C329.395 76.72 324.655 72.04 318.295 68.32C311.935 64.6 304.435 62.74 295.795 62.74C287.035 62.74 279.055 64.84 271.855 69.04C264.775 73.24 259.195 79.18 255.115 86.86ZM328.015 94.06C331.015 99.58 332.515 106.06 332.515 113.5C332.515 120.94 331.015 127.48 328.015 133.12C325.015 138.64 320.935 142.9 315.775 145.9C310.735 148.78 305.155 150.22 299.035 150.22C292.915 150.22 287.335 148.78 282.295 145.9C277.255 142.9 273.235 138.64 270.235 133.12C267.235 127.48 265.735 120.88 265.735 113.32C265.735 105.88 267.235 99.4 270.235 93.88C273.235 88.36 277.255 84.16 282.295 81.28C287.335 78.4 292.915 76.96 299.035 76.96C305.155 76.96 310.735 78.46 315.775 81.46C320.935 84.34 325.015 88.54 328.015 94.06Z\"\n        fill-rule=\"evenodd\"\n      />\n    </g>\n    <defs>\n      <clipPath id=\"clip0_1113_4725\">\n        <rect fill=\"white\" height=\"200\" width=\"699\" />\n      </clipPath>\n    </defs>\n  </svg>\n);\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:block"
}