@opensite/ui 0.9.9 → 1.0.1

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.
@@ -1632,6 +1632,55 @@ function CarouselPagination({
1632
1632
  )
1633
1633
  ] });
1634
1634
  }
1635
+ var platformIconMap = {
1636
+ instagram: "cib/instagram",
1637
+ linkedin: "cib/linkedin",
1638
+ google: "cib/google",
1639
+ facebook: "cib/facebook",
1640
+ tiktok: "cib/tiktok",
1641
+ youtube: "cib/youtube",
1642
+ yelp: "cib/yelp",
1643
+ spotify: "cib/spotify",
1644
+ apple: "cib/apple",
1645
+ x: "line-md/twitter-x"
1646
+ };
1647
+ var SocialLinkIcon = React4__namespace.forwardRef(
1648
+ ({
1649
+ platformName,
1650
+ label,
1651
+ iconSize = 20,
1652
+ iconColor,
1653
+ iconClassName,
1654
+ className,
1655
+ ...pressableProps
1656
+ }, ref) => {
1657
+ const iconName = platformIconMap[platformName];
1658
+ const accessibleLabel = label || platformName;
1659
+ return /* @__PURE__ */ jsxRuntime.jsx(
1660
+ Pressable,
1661
+ {
1662
+ ref,
1663
+ "aria-label": accessibleLabel,
1664
+ className: cn(
1665
+ "inline-flex items-center justify-center transition-colors",
1666
+ className
1667
+ ),
1668
+ ...pressableProps,
1669
+ children: /* @__PURE__ */ jsxRuntime.jsx(
1670
+ DynamicIcon,
1671
+ {
1672
+ name: iconName,
1673
+ size: iconSize,
1674
+ color: iconColor,
1675
+ className: iconClassName,
1676
+ alt: accessibleLabel
1677
+ }
1678
+ )
1679
+ }
1680
+ );
1681
+ }
1682
+ );
1683
+ SocialLinkIcon.displayName = "SocialLinkIcon";
1635
1684
  function AlternatingBlocks({
1636
1685
  sections,
1637
1686
  sectionsSlot,
@@ -4690,3 +4739,4 @@ exports.PopoverContent = PopoverContent;
4690
4739
  exports.PopoverTrigger = PopoverTrigger;
4691
4740
  exports.Pressable = Pressable;
4692
4741
  exports.Section = Section;
4742
+ exports.SocialLinkIcon = SocialLinkIcon;
@@ -9,6 +9,7 @@ export { Badge } from './badge.cjs';
9
9
  export { Popover, PopoverContent, PopoverTrigger } from './popover.cjs';
10
10
  export { DynamicIcon } from './dynamic-icon.cjs';
11
11
  export { CarouselPagination, CarouselPaginationProps } from './carousel-pagination.cjs';
12
+ export { SocialLinkIcon, SocialLinkIconDynamicIconProps, SocialLinkIconProps, SocialPlatformName } from './social-link-icon.cjs';
12
13
  export { Pressable, PressableProps } from './pressable.cjs';
13
14
  export { AlternatingBlocks } from './alternating-blocks.cjs';
14
15
  export { c as AboutCultureTabs, p as AboutCultureTabsProps, b as AboutExpandableValues, n as AboutExpandableValuesProps, a as AboutMissionPrinciples, m as AboutMissionPrinciplesProps, A as AboutSplitHero, l as AboutSplitHeroProps, k as AlternatingBlockSection, j as AlternatingBlocksProps, h as AnimatedDialogProps, i as AnimatedDialogSize, C as CommunityInitiatives, o as CommunityInitiativesProps, e as ContainerMaxWidth, d as ContainerProps, q as MediaHoverCtaItem, r as MediaHoverCtaType, M as MediaHoverCtasProps, P as PageHeroBannerProps, f as SectionBackground, S as SectionProps, g as SectionSpacing } from './community-initiatives-CPyEa7IX.cjs';
@@ -9,6 +9,7 @@ export { Badge } from './badge.js';
9
9
  export { Popover, PopoverContent, PopoverTrigger } from './popover.js';
10
10
  export { DynamicIcon } from './dynamic-icon.js';
11
11
  export { CarouselPagination, CarouselPaginationProps } from './carousel-pagination.js';
12
+ export { SocialLinkIcon, SocialLinkIconDynamicIconProps, SocialLinkIconProps, SocialPlatformName } from './social-link-icon.js';
12
13
  export { Pressable, PressableProps } from './pressable.js';
13
14
  export { AlternatingBlocks } from './alternating-blocks.js';
14
15
  export { c as AboutCultureTabs, p as AboutCultureTabsProps, b as AboutExpandableValues, n as AboutExpandableValuesProps, a as AboutMissionPrinciples, m as AboutMissionPrinciplesProps, A as AboutSplitHero, l as AboutSplitHeroProps, k as AlternatingBlockSection, j as AlternatingBlocksProps, h as AnimatedDialogProps, i as AnimatedDialogSize, C as CommunityInitiatives, o as CommunityInitiativesProps, e as ContainerMaxWidth, d as ContainerProps, q as MediaHoverCtaItem, r as MediaHoverCtaType, M as MediaHoverCtasProps, P as PageHeroBannerProps, f as SectionBackground, S as SectionProps, g as SectionSpacing } from './community-initiatives-hxnFe3w6.js';
@@ -1609,6 +1609,55 @@ function CarouselPagination({
1609
1609
  )
1610
1610
  ] });
1611
1611
  }
1612
+ var platformIconMap = {
1613
+ instagram: "cib/instagram",
1614
+ linkedin: "cib/linkedin",
1615
+ google: "cib/google",
1616
+ facebook: "cib/facebook",
1617
+ tiktok: "cib/tiktok",
1618
+ youtube: "cib/youtube",
1619
+ yelp: "cib/yelp",
1620
+ spotify: "cib/spotify",
1621
+ apple: "cib/apple",
1622
+ x: "line-md/twitter-x"
1623
+ };
1624
+ var SocialLinkIcon = React4.forwardRef(
1625
+ ({
1626
+ platformName,
1627
+ label,
1628
+ iconSize = 20,
1629
+ iconColor,
1630
+ iconClassName,
1631
+ className,
1632
+ ...pressableProps
1633
+ }, ref) => {
1634
+ const iconName = platformIconMap[platformName];
1635
+ const accessibleLabel = label || platformName;
1636
+ return /* @__PURE__ */ jsx(
1637
+ Pressable,
1638
+ {
1639
+ ref,
1640
+ "aria-label": accessibleLabel,
1641
+ className: cn(
1642
+ "inline-flex items-center justify-center transition-colors",
1643
+ className
1644
+ ),
1645
+ ...pressableProps,
1646
+ children: /* @__PURE__ */ jsx(
1647
+ DynamicIcon,
1648
+ {
1649
+ name: iconName,
1650
+ size: iconSize,
1651
+ color: iconColor,
1652
+ className: iconClassName,
1653
+ alt: accessibleLabel
1654
+ }
1655
+ )
1656
+ }
1657
+ );
1658
+ }
1659
+ );
1660
+ SocialLinkIcon.displayName = "SocialLinkIcon";
1612
1661
  function AlternatingBlocks({
1613
1662
  sections,
1614
1663
  sectionsSlot,
@@ -4628,4 +4677,4 @@ function FooterNavSocial({
4628
4677
  );
4629
4678
  }
4630
4679
 
4631
- export { AboutCultureTabs, AboutExpandableValues, AboutMissionPrinciples, AboutSplitHero, AlternatingBlocks, AnimatedDialog, Badge, Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CarouselPagination, CommunityInitiatives, Container, DynamicIcon, FooterAnimatedSocial, FooterBackgroundCard, FooterBrandDescription, FooterContactCard, FooterCtaBanner, FooterCtaSocial, FooterLinksGrid, FooterNavSocial, FooterNewsletterGrid, FooterNewsletterMinimal, FooterSimpleCentered, FooterSocialApps, FooterSocialNewsletter, ImageSlider, MediaHoverCtas, PageHeroBanner, Popover, PopoverContent, PopoverTrigger, Pressable, Section };
4680
+ export { AboutCultureTabs, AboutExpandableValues, AboutMissionPrinciples, AboutSplitHero, AlternatingBlocks, AnimatedDialog, Badge, Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CarouselPagination, CommunityInitiatives, Container, DynamicIcon, FooterAnimatedSocial, FooterBackgroundCard, FooterBrandDescription, FooterContactCard, FooterCtaBanner, FooterCtaSocial, FooterLinksGrid, FooterNavSocial, FooterNewsletterGrid, FooterNewsletterMinimal, FooterSimpleCentered, FooterSocialApps, FooterSocialNewsletter, ImageSlider, MediaHoverCtas, PageHeroBanner, Popover, PopoverContent, PopoverTrigger, Pressable, Section, SocialLinkIcon };
package/dist/index.cjs CHANGED
@@ -1663,6 +1663,55 @@ function CarouselPagination({
1663
1663
  )
1664
1664
  ] });
1665
1665
  }
1666
+ var platformIconMap = {
1667
+ instagram: "cib/instagram",
1668
+ linkedin: "cib/linkedin",
1669
+ google: "cib/google",
1670
+ facebook: "cib/facebook",
1671
+ tiktok: "cib/tiktok",
1672
+ youtube: "cib/youtube",
1673
+ yelp: "cib/yelp",
1674
+ spotify: "cib/spotify",
1675
+ apple: "cib/apple",
1676
+ x: "line-md/twitter-x"
1677
+ };
1678
+ var SocialLinkIcon = React4__namespace.forwardRef(
1679
+ ({
1680
+ platformName,
1681
+ label,
1682
+ iconSize = 20,
1683
+ iconColor,
1684
+ iconClassName,
1685
+ className,
1686
+ ...pressableProps
1687
+ }, ref) => {
1688
+ const iconName = platformIconMap[platformName];
1689
+ const accessibleLabel = label || platformName;
1690
+ return /* @__PURE__ */ jsxRuntime.jsx(
1691
+ Pressable,
1692
+ {
1693
+ ref,
1694
+ "aria-label": accessibleLabel,
1695
+ className: cn(
1696
+ "inline-flex items-center justify-center transition-colors",
1697
+ className
1698
+ ),
1699
+ ...pressableProps,
1700
+ children: /* @__PURE__ */ jsxRuntime.jsx(
1701
+ DynamicIcon,
1702
+ {
1703
+ name: iconName,
1704
+ size: iconSize,
1705
+ color: iconColor,
1706
+ className: iconClassName,
1707
+ alt: accessibleLabel
1708
+ }
1709
+ )
1710
+ }
1711
+ );
1712
+ }
1713
+ );
1714
+ SocialLinkIcon.displayName = "SocialLinkIcon";
1666
1715
  function AlternatingBlocks({
1667
1716
  sections,
1668
1717
  sectionsSlot,
@@ -4721,6 +4770,7 @@ exports.PopoverContent = PopoverContent;
4721
4770
  exports.PopoverTrigger = PopoverTrigger;
4722
4771
  exports.Pressable = Pressable;
4723
4772
  exports.Section = Section;
4773
+ exports.SocialLinkIcon = SocialLinkIcon;
4724
4774
  exports.cn = cn;
4725
4775
  exports.getAccentColor = getAccentColor;
4726
4776
  exports.getBorderColor = getBorderColor;
package/dist/index.d.cts CHANGED
@@ -9,6 +9,7 @@ export { Badge } from './badge.cjs';
9
9
  export { Popover, PopoverContent, PopoverTrigger } from './popover.cjs';
10
10
  export { DynamicIcon } from './dynamic-icon.cjs';
11
11
  export { CarouselPagination, CarouselPaginationProps } from './carousel-pagination.cjs';
12
+ export { SocialLinkIcon, SocialLinkIconDynamicIconProps, SocialLinkIconProps, SocialPlatformName } from './social-link-icon.cjs';
12
13
  export { Pressable, PressableProps } from './pressable.cjs';
13
14
  export { AlternatingBlocks } from './alternating-blocks.cjs';
14
15
  export { c as AboutCultureTabs, p as AboutCultureTabsProps, b as AboutExpandableValues, n as AboutExpandableValuesProps, a as AboutMissionPrinciples, m as AboutMissionPrinciplesProps, A as AboutSplitHero, l as AboutSplitHeroProps, k as AlternatingBlockSection, j as AlternatingBlocksProps, h as AnimatedDialogProps, i as AnimatedDialogSize, C as CommunityInitiatives, o as CommunityInitiativesProps, e as ContainerMaxWidth, d as ContainerProps, D as DirectionConfig, F as FeatureShowcaseItem, s as FeatureShowcaseProps, q as MediaHoverCtaItem, r as MediaHoverCtaType, M as MediaHoverCtasProps, P as PageHeroBannerProps, f as SectionBackground, S as SectionProps, g as SectionSpacing } from './community-initiatives-CPyEa7IX.cjs';
package/dist/index.d.ts CHANGED
@@ -9,6 +9,7 @@ export { Badge } from './badge.js';
9
9
  export { Popover, PopoverContent, PopoverTrigger } from './popover.js';
10
10
  export { DynamicIcon } from './dynamic-icon.js';
11
11
  export { CarouselPagination, CarouselPaginationProps } from './carousel-pagination.js';
12
+ export { SocialLinkIcon, SocialLinkIconDynamicIconProps, SocialLinkIconProps, SocialPlatformName } from './social-link-icon.js';
12
13
  export { Pressable, PressableProps } from './pressable.js';
13
14
  export { AlternatingBlocks } from './alternating-blocks.js';
14
15
  export { c as AboutCultureTabs, p as AboutCultureTabsProps, b as AboutExpandableValues, n as AboutExpandableValuesProps, a as AboutMissionPrinciples, m as AboutMissionPrinciplesProps, A as AboutSplitHero, l as AboutSplitHeroProps, k as AlternatingBlockSection, j as AlternatingBlocksProps, h as AnimatedDialogProps, i as AnimatedDialogSize, C as CommunityInitiatives, o as CommunityInitiativesProps, e as ContainerMaxWidth, d as ContainerProps, D as DirectionConfig, F as FeatureShowcaseItem, s as FeatureShowcaseProps, q as MediaHoverCtaItem, r as MediaHoverCtaType, M as MediaHoverCtasProps, P as PageHeroBannerProps, f as SectionBackground, S as SectionProps, g as SectionSpacing } from './community-initiatives-hxnFe3w6.js';
package/dist/index.js CHANGED
@@ -1640,6 +1640,55 @@ function CarouselPagination({
1640
1640
  )
1641
1641
  ] });
1642
1642
  }
1643
+ var platformIconMap = {
1644
+ instagram: "cib/instagram",
1645
+ linkedin: "cib/linkedin",
1646
+ google: "cib/google",
1647
+ facebook: "cib/facebook",
1648
+ tiktok: "cib/tiktok",
1649
+ youtube: "cib/youtube",
1650
+ yelp: "cib/yelp",
1651
+ spotify: "cib/spotify",
1652
+ apple: "cib/apple",
1653
+ x: "line-md/twitter-x"
1654
+ };
1655
+ var SocialLinkIcon = React4.forwardRef(
1656
+ ({
1657
+ platformName,
1658
+ label,
1659
+ iconSize = 20,
1660
+ iconColor,
1661
+ iconClassName,
1662
+ className,
1663
+ ...pressableProps
1664
+ }, ref) => {
1665
+ const iconName = platformIconMap[platformName];
1666
+ const accessibleLabel = label || platformName;
1667
+ return /* @__PURE__ */ jsx(
1668
+ Pressable,
1669
+ {
1670
+ ref,
1671
+ "aria-label": accessibleLabel,
1672
+ className: cn(
1673
+ "inline-flex items-center justify-center transition-colors",
1674
+ className
1675
+ ),
1676
+ ...pressableProps,
1677
+ children: /* @__PURE__ */ jsx(
1678
+ DynamicIcon,
1679
+ {
1680
+ name: iconName,
1681
+ size: iconSize,
1682
+ color: iconColor,
1683
+ className: iconClassName,
1684
+ alt: accessibleLabel
1685
+ }
1686
+ )
1687
+ }
1688
+ );
1689
+ }
1690
+ );
1691
+ SocialLinkIcon.displayName = "SocialLinkIcon";
1643
1692
  function AlternatingBlocks({
1644
1693
  sections,
1645
1694
  sectionsSlot,
@@ -4659,4 +4708,4 @@ function FooterNavSocial({
4659
4708
  );
4660
4709
  }
4661
4710
 
4662
- export { AboutCultureTabs, AboutExpandableValues, AboutMissionPrinciples, AboutSplitHero, AlternatingBlocks, AnimatedDialog, Badge, Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CarouselPagination, CommunityInitiatives, Container, DynamicIcon, FooterAnimatedSocial, FooterBackgroundCard, FooterBrandDescription, FooterContactCard, FooterCtaBanner, FooterCtaSocial, FooterLinksGrid, FooterNavSocial, FooterNewsletterGrid, FooterNewsletterMinimal, FooterSimpleCentered, FooterSocialApps, FooterSocialNewsletter, ImageSlider, MediaHoverCtas, PageHeroBanner, Popover, PopoverContent, PopoverTrigger, Pressable, Section, cn, getAccentColor, getBorderColor, getNestedCardBg, getNestedCardTextColor, getTextColor, useNavigation };
4711
+ export { AboutCultureTabs, AboutExpandableValues, AboutMissionPrinciples, AboutSplitHero, AlternatingBlocks, AnimatedDialog, Badge, Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CarouselPagination, CommunityInitiatives, Container, DynamicIcon, FooterAnimatedSocial, FooterBackgroundCard, FooterBrandDescription, FooterContactCard, FooterCtaBanner, FooterCtaSocial, FooterLinksGrid, FooterNavSocial, FooterNewsletterGrid, FooterNewsletterMinimal, FooterSimpleCentered, FooterSocialApps, FooterSocialNewsletter, ImageSlider, MediaHoverCtas, PageHeroBanner, Popover, PopoverContent, PopoverTrigger, Pressable, Section, SocialLinkIcon, cn, getAccentColor, getBorderColor, getNestedCardBg, getNestedCardTextColor, getTextColor, useNavigation };
@@ -1478,10 +1478,10 @@ var DesktopMenuItem = ({
1478
1478
  if (hasDropdown) {
1479
1479
  return /* @__PURE__ */ jsxRuntime.jsxs(NavigationMenuItem, { value: `${index}`, children: [
1480
1480
  /* @__PURE__ */ jsxRuntime.jsx(NavigationMenuTrigger, { className: "h-auto bg-transparent px-3 py-2 font-normal hover:bg-muted focus:bg-muted data-[state=open]:bg-muted/50", children: item.label }),
1481
- /* @__PURE__ */ jsxRuntime.jsx(NavigationMenuContent, { className: "!rounded-xl !border-0", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "w-full max-w-6xl p-6", children: renderDropdownContent(
1481
+ /* @__PURE__ */ jsxRuntime.jsx(NavigationMenuContent, { className: "!rounded-xl !border-0 !p-6", children: renderDropdownContent(
1482
1482
  { ...item, layout: effectiveLayout },
1483
1483
  optixFlowConfig
1484
- ) }) })
1484
+ ) })
1485
1485
  ] }, `desktop-menu-item-${index}`);
1486
1486
  }
1487
1487
  return /* @__PURE__ */ jsxRuntime.jsx(NavigationMenuItem, { value: `${index}`, children: /* @__PURE__ */ jsxRuntime.jsx(
@@ -1551,7 +1551,7 @@ var SolutionsMenu = ({
1551
1551
  platformItems,
1552
1552
  featuredHeroCard,
1553
1553
  optixFlowConfig
1554
- }) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
1554
+ }) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid min-w-[1100px] grid-cols-2 gap-4", children: [
1555
1555
  featuredHeroCard && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "col-span-1", children: /* @__PURE__ */ jsxRuntime.jsxs(
1556
1556
  Pressable,
1557
1557
  {
@@ -1596,7 +1596,7 @@ var SolutionsMenu = ({
1596
1596
  NavigationMenuLink,
1597
1597
  {
1598
1598
  href: technology.href,
1599
- className: "group flex items-center gap-2 rounded-lg p-2 hover:bg-muted",
1599
+ className: "group !flex !w-full items-center gap-2 rounded-lg p-2 hover:bg-muted",
1600
1600
  children: [
1601
1601
  /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: technology.icon, size: 16, className: "shrink-0" }),
1602
1602
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "min-w-0 flex-1 text-sm font-medium", children: technology.title })
@@ -1608,7 +1608,7 @@ var SolutionsMenu = ({
1608
1608
  solutionCards.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "col-span-2 mt-2 grid grid-cols-4 gap-3", children: solutionCards.map((solution) => /* @__PURE__ */ jsxRuntime.jsxs(
1609
1609
  "div",
1610
1610
  {
1611
- className: "col-span-1 flex flex-col rounded-lg border border-border p-4",
1611
+ className: "col-span-1 flex w-full flex-col rounded-lg border border-border p-4",
1612
1612
  children: [
1613
1613
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "border-b border-border pb-3", children: /* @__PURE__ */ jsxRuntime.jsxs(
1614
1614
  Pressable,
@@ -1635,7 +1635,7 @@ var SolutionsMenu = ({
1635
1635
  NavigationMenuLink,
1636
1636
  {
1637
1637
  href: subpage.href,
1638
- className: "group flex items-center gap-2 rounded-lg p-2 text-left hover:bg-muted",
1638
+ className: "group !flex !w-full items-center gap-2 rounded-lg p-2 text-left hover:bg-muted",
1639
1639
  children: [
1640
1640
  /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: subpage.icon, size: 14, className: "shrink-0" }),
1641
1641
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "min-w-0 flex-1 text-sm font-medium", children: subpage.title })
@@ -1652,7 +1652,7 @@ var ProductsMenu = ({
1652
1652
  productCategories,
1653
1653
  featuredHeroCard,
1654
1654
  optixFlowConfig
1655
- }) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-[320px_1fr] gap-6", children: [
1655
+ }) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid min-w-[1000px] grid-cols-[320px_1fr] gap-6", children: [
1656
1656
  featuredHeroCard && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "col-span-1", children: /* @__PURE__ */ jsxRuntime.jsxs(
1657
1657
  Pressable,
1658
1658
  {
@@ -1694,7 +1694,7 @@ var ProductsMenu = ({
1694
1694
  NavigationMenuLink,
1695
1695
  {
1696
1696
  href: product.href,
1697
- className: "group col-span-1 flex items-center gap-3 rounded-lg p-3 text-left hover:bg-muted",
1697
+ className: "group col-span-1 !flex !w-full items-center gap-3 rounded-lg p-3 text-left hover:bg-muted",
1698
1698
  children: [
1699
1699
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative flex size-12 shrink-0 items-center justify-center overflow-hidden rounded", children: /* @__PURE__ */ jsxRuntime.jsx(
1700
1700
  img.Img,
@@ -1720,7 +1720,7 @@ var GlobalMenu = ({
1720
1720
  regions,
1721
1721
  featuredHeroCard,
1722
1722
  optixFlowConfig
1723
- }) => /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
1723
+ }) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "min-w-[1000px]", children: [
1724
1724
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-[280px_1fr] gap-6", children: [
1725
1725
  featuredHeroCard && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "col-span-1", children: /* @__PURE__ */ jsxRuntime.jsxs(
1726
1726
  Pressable,
@@ -1763,7 +1763,7 @@ var GlobalMenu = ({
1763
1763
  NavigationMenuLink,
1764
1764
  {
1765
1765
  href: feature.href,
1766
- className: "group col-span-1 flex items-center gap-2 rounded-lg p-2 text-left hover:bg-muted",
1766
+ className: "group col-span-1 !flex !w-full items-center gap-2 rounded-lg p-2 text-left hover:bg-muted",
1767
1767
  children: [
1768
1768
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex size-8 shrink-0 items-center justify-center", children: /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: feature.icon, size: 18 }) }),
1769
1769
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "min-w-0 flex-1", children: [
@@ -1781,14 +1781,14 @@ var GlobalMenu = ({
1781
1781
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid grid-cols-4 gap-4", children: regions.map((region) => /* @__PURE__ */ jsxRuntime.jsxs(
1782
1782
  "div",
1783
1783
  {
1784
- className: "col-span-1 flex flex-col gap-3",
1784
+ className: "col-span-1 flex w-full flex-col gap-3",
1785
1785
  children: [
1786
1786
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-left text-xs font-medium text-muted-foreground", children: region.title }),
1787
1787
  /* @__PURE__ */ jsxRuntime.jsx("menu", { className: "grid gap-1.5", children: region.locations.map((location) => /* @__PURE__ */ jsxRuntime.jsxs(
1788
1788
  NavigationMenuLink,
1789
1789
  {
1790
1790
  href: location.href,
1791
- className: "group flex items-center gap-2 rounded-lg p-2 text-left hover:bg-muted",
1791
+ className: "group !flex !w-full items-center gap-2 rounded-lg p-2 text-left hover:bg-muted",
1792
1792
  children: [
1793
1793
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex size-4 shrink-0 items-center justify-center", children: location.icon }),
1794
1794
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "min-w-0 flex-1 text-sm font-medium", children: location.title })
@@ -1806,7 +1806,7 @@ var PartnersMenu = ({
1806
1806
  partnerCards,
1807
1807
  featuredHeroCard,
1808
1808
  optixFlowConfig
1809
- }) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-[2fr_1fr] gap-6", children: [
1809
+ }) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid min-w-[900px] grid-cols-[2fr_1fr] gap-6", children: [
1810
1810
  featuredHeroCard && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "col-span-1", children: /* @__PURE__ */ jsxRuntime.jsxs(
1811
1811
  Pressable,
1812
1812
  {
@@ -1849,7 +1849,7 @@ var PartnersMenu = ({
1849
1849
  NavigationMenuLink,
1850
1850
  {
1851
1851
  href: card.href,
1852
- className: "group flex items-start gap-3 rounded-lg border border-border p-4 hover:bg-muted",
1852
+ className: "group !flex !w-full items-start gap-3 rounded-lg border border-border p-4 hover:bg-muted",
1853
1853
  children: [
1854
1854
  /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: card.icon, size: 28, className: "shrink-0" }),
1855
1855
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "min-w-0 flex-1", children: [
@@ -1865,7 +1865,7 @@ var ResourcesMenu = ({
1865
1865
  resourceItems,
1866
1866
  topicGroups,
1867
1867
  featuredHeroCard
1868
- }) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid grid-cols-[280px_1fr_220px] gap-6", children: [
1868
+ }) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid min-w-[1000px] grid-cols-[280px_1fr_220px] gap-6", children: [
1869
1869
  featuredHeroCard && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "col-span-1", children: /* @__PURE__ */ jsxRuntime.jsxs(
1870
1870
  Pressable,
1871
1871
  {
@@ -1906,7 +1906,7 @@ var ResourcesMenu = ({
1906
1906
  NavigationMenuLink,
1907
1907
  {
1908
1908
  href: resource.href,
1909
- className: "group col-span-1 flex items-start gap-3 rounded-lg border border-border p-3 hover:bg-muted",
1909
+ className: "group col-span-1 !flex !w-full items-start gap-3 rounded-lg border border-border p-3 hover:bg-muted",
1910
1910
  children: [
1911
1911
  /* @__PURE__ */ jsxRuntime.jsx(
1912
1912
  DynamicIcon,
@@ -1931,7 +1931,7 @@ var ResourcesMenu = ({
1931
1931
  NavigationMenuLink,
1932
1932
  {
1933
1933
  href: topic.href,
1934
- className: "group flex items-center gap-2 rounded-lg p-2 hover:bg-muted",
1934
+ className: "group !flex !w-full items-center gap-2 rounded-lg p-2 hover:bg-muted",
1935
1935
  children: [
1936
1936
  /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: topic.icon, size: 14, className: "shrink-0" }),
1937
1937
  /* @__PURE__ */ jsxRuntime.jsx("span", { className: "min-w-0 flex-1 text-sm font-medium", children: topic.title })
@@ -1454,10 +1454,10 @@ var DesktopMenuItem = ({
1454
1454
  if (hasDropdown) {
1455
1455
  return /* @__PURE__ */ jsxs(NavigationMenuItem, { value: `${index}`, children: [
1456
1456
  /* @__PURE__ */ jsx(NavigationMenuTrigger, { className: "h-auto bg-transparent px-3 py-2 font-normal hover:bg-muted focus:bg-muted data-[state=open]:bg-muted/50", children: item.label }),
1457
- /* @__PURE__ */ jsx(NavigationMenuContent, { className: "!rounded-xl !border-0", children: /* @__PURE__ */ jsx("div", { className: "w-full max-w-6xl p-6", children: renderDropdownContent(
1457
+ /* @__PURE__ */ jsx(NavigationMenuContent, { className: "!rounded-xl !border-0 !p-6", children: renderDropdownContent(
1458
1458
  { ...item, layout: effectiveLayout },
1459
1459
  optixFlowConfig
1460
- ) }) })
1460
+ ) })
1461
1461
  ] }, `desktop-menu-item-${index}`);
1462
1462
  }
1463
1463
  return /* @__PURE__ */ jsx(NavigationMenuItem, { value: `${index}`, children: /* @__PURE__ */ jsx(
@@ -1527,7 +1527,7 @@ var SolutionsMenu = ({
1527
1527
  platformItems,
1528
1528
  featuredHeroCard,
1529
1529
  optixFlowConfig
1530
- }) => /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
1530
+ }) => /* @__PURE__ */ jsxs("div", { className: "grid min-w-[1100px] grid-cols-2 gap-4", children: [
1531
1531
  featuredHeroCard && /* @__PURE__ */ jsx("div", { className: "col-span-1", children: /* @__PURE__ */ jsxs(
1532
1532
  Pressable,
1533
1533
  {
@@ -1572,7 +1572,7 @@ var SolutionsMenu = ({
1572
1572
  NavigationMenuLink,
1573
1573
  {
1574
1574
  href: technology.href,
1575
- className: "group flex items-center gap-2 rounded-lg p-2 hover:bg-muted",
1575
+ className: "group !flex !w-full items-center gap-2 rounded-lg p-2 hover:bg-muted",
1576
1576
  children: [
1577
1577
  /* @__PURE__ */ jsx(DynamicIcon, { name: technology.icon, size: 16, className: "shrink-0" }),
1578
1578
  /* @__PURE__ */ jsx("div", { className: "min-w-0 flex-1 text-sm font-medium", children: technology.title })
@@ -1584,7 +1584,7 @@ var SolutionsMenu = ({
1584
1584
  solutionCards.length > 0 && /* @__PURE__ */ jsx("div", { className: "col-span-2 mt-2 grid grid-cols-4 gap-3", children: solutionCards.map((solution) => /* @__PURE__ */ jsxs(
1585
1585
  "div",
1586
1586
  {
1587
- className: "col-span-1 flex flex-col rounded-lg border border-border p-4",
1587
+ className: "col-span-1 flex w-full flex-col rounded-lg border border-border p-4",
1588
1588
  children: [
1589
1589
  /* @__PURE__ */ jsx("div", { className: "border-b border-border pb-3", children: /* @__PURE__ */ jsxs(
1590
1590
  Pressable,
@@ -1611,7 +1611,7 @@ var SolutionsMenu = ({
1611
1611
  NavigationMenuLink,
1612
1612
  {
1613
1613
  href: subpage.href,
1614
- className: "group flex items-center gap-2 rounded-lg p-2 text-left hover:bg-muted",
1614
+ className: "group !flex !w-full items-center gap-2 rounded-lg p-2 text-left hover:bg-muted",
1615
1615
  children: [
1616
1616
  /* @__PURE__ */ jsx(DynamicIcon, { name: subpage.icon, size: 14, className: "shrink-0" }),
1617
1617
  /* @__PURE__ */ jsx("div", { className: "min-w-0 flex-1 text-sm font-medium", children: subpage.title })
@@ -1628,7 +1628,7 @@ var ProductsMenu = ({
1628
1628
  productCategories,
1629
1629
  featuredHeroCard,
1630
1630
  optixFlowConfig
1631
- }) => /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-[320px_1fr] gap-6", children: [
1631
+ }) => /* @__PURE__ */ jsxs("div", { className: "grid min-w-[1000px] grid-cols-[320px_1fr] gap-6", children: [
1632
1632
  featuredHeroCard && /* @__PURE__ */ jsx("div", { className: "col-span-1", children: /* @__PURE__ */ jsxs(
1633
1633
  Pressable,
1634
1634
  {
@@ -1670,7 +1670,7 @@ var ProductsMenu = ({
1670
1670
  NavigationMenuLink,
1671
1671
  {
1672
1672
  href: product.href,
1673
- className: "group col-span-1 flex items-center gap-3 rounded-lg p-3 text-left hover:bg-muted",
1673
+ className: "group col-span-1 !flex !w-full items-center gap-3 rounded-lg p-3 text-left hover:bg-muted",
1674
1674
  children: [
1675
1675
  /* @__PURE__ */ jsx("div", { className: "relative flex size-12 shrink-0 items-center justify-center overflow-hidden rounded", children: /* @__PURE__ */ jsx(
1676
1676
  Img,
@@ -1696,7 +1696,7 @@ var GlobalMenu = ({
1696
1696
  regions,
1697
1697
  featuredHeroCard,
1698
1698
  optixFlowConfig
1699
- }) => /* @__PURE__ */ jsxs("div", { children: [
1699
+ }) => /* @__PURE__ */ jsxs("div", { className: "min-w-[1000px]", children: [
1700
1700
  /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-[280px_1fr] gap-6", children: [
1701
1701
  featuredHeroCard && /* @__PURE__ */ jsx("div", { className: "col-span-1", children: /* @__PURE__ */ jsxs(
1702
1702
  Pressable,
@@ -1739,7 +1739,7 @@ var GlobalMenu = ({
1739
1739
  NavigationMenuLink,
1740
1740
  {
1741
1741
  href: feature.href,
1742
- className: "group col-span-1 flex items-center gap-2 rounded-lg p-2 text-left hover:bg-muted",
1742
+ className: "group col-span-1 !flex !w-full items-center gap-2 rounded-lg p-2 text-left hover:bg-muted",
1743
1743
  children: [
1744
1744
  /* @__PURE__ */ jsx("div", { className: "flex size-8 shrink-0 items-center justify-center", children: /* @__PURE__ */ jsx(DynamicIcon, { name: feature.icon, size: 18 }) }),
1745
1745
  /* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
@@ -1757,14 +1757,14 @@ var GlobalMenu = ({
1757
1757
  /* @__PURE__ */ jsx("div", { className: "grid grid-cols-4 gap-4", children: regions.map((region) => /* @__PURE__ */ jsxs(
1758
1758
  "div",
1759
1759
  {
1760
- className: "col-span-1 flex flex-col gap-3",
1760
+ className: "col-span-1 flex w-full flex-col gap-3",
1761
1761
  children: [
1762
1762
  /* @__PURE__ */ jsx("div", { className: "text-left text-xs font-medium text-muted-foreground", children: region.title }),
1763
1763
  /* @__PURE__ */ jsx("menu", { className: "grid gap-1.5", children: region.locations.map((location) => /* @__PURE__ */ jsxs(
1764
1764
  NavigationMenuLink,
1765
1765
  {
1766
1766
  href: location.href,
1767
- className: "group flex items-center gap-2 rounded-lg p-2 text-left hover:bg-muted",
1767
+ className: "group !flex !w-full items-center gap-2 rounded-lg p-2 text-left hover:bg-muted",
1768
1768
  children: [
1769
1769
  /* @__PURE__ */ jsx("div", { className: "flex size-4 shrink-0 items-center justify-center", children: location.icon }),
1770
1770
  /* @__PURE__ */ jsx("div", { className: "min-w-0 flex-1 text-sm font-medium", children: location.title })
@@ -1782,7 +1782,7 @@ var PartnersMenu = ({
1782
1782
  partnerCards,
1783
1783
  featuredHeroCard,
1784
1784
  optixFlowConfig
1785
- }) => /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-[2fr_1fr] gap-6", children: [
1785
+ }) => /* @__PURE__ */ jsxs("div", { className: "grid min-w-[900px] grid-cols-[2fr_1fr] gap-6", children: [
1786
1786
  featuredHeroCard && /* @__PURE__ */ jsx("div", { className: "col-span-1", children: /* @__PURE__ */ jsxs(
1787
1787
  Pressable,
1788
1788
  {
@@ -1825,7 +1825,7 @@ var PartnersMenu = ({
1825
1825
  NavigationMenuLink,
1826
1826
  {
1827
1827
  href: card.href,
1828
- className: "group flex items-start gap-3 rounded-lg border border-border p-4 hover:bg-muted",
1828
+ className: "group !flex !w-full items-start gap-3 rounded-lg border border-border p-4 hover:bg-muted",
1829
1829
  children: [
1830
1830
  /* @__PURE__ */ jsx(DynamicIcon, { name: card.icon, size: 28, className: "shrink-0" }),
1831
1831
  /* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
@@ -1841,7 +1841,7 @@ var ResourcesMenu = ({
1841
1841
  resourceItems,
1842
1842
  topicGroups,
1843
1843
  featuredHeroCard
1844
- }) => /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-[280px_1fr_220px] gap-6", children: [
1844
+ }) => /* @__PURE__ */ jsxs("div", { className: "grid min-w-[1000px] grid-cols-[280px_1fr_220px] gap-6", children: [
1845
1845
  featuredHeroCard && /* @__PURE__ */ jsx("div", { className: "col-span-1", children: /* @__PURE__ */ jsxs(
1846
1846
  Pressable,
1847
1847
  {
@@ -1882,7 +1882,7 @@ var ResourcesMenu = ({
1882
1882
  NavigationMenuLink,
1883
1883
  {
1884
1884
  href: resource.href,
1885
- className: "group col-span-1 flex items-start gap-3 rounded-lg border border-border p-3 hover:bg-muted",
1885
+ className: "group col-span-1 !flex !w-full items-start gap-3 rounded-lg border border-border p-3 hover:bg-muted",
1886
1886
  children: [
1887
1887
  /* @__PURE__ */ jsx(
1888
1888
  DynamicIcon,
@@ -1907,7 +1907,7 @@ var ResourcesMenu = ({
1907
1907
  NavigationMenuLink,
1908
1908
  {
1909
1909
  href: topic.href,
1910
- className: "group flex items-center gap-2 rounded-lg p-2 hover:bg-muted",
1910
+ className: "group !flex !w-full items-center gap-2 rounded-lg p-2 hover:bg-muted",
1911
1911
  children: [
1912
1912
  /* @__PURE__ */ jsx(DynamicIcon, { name: topic.icon, size: 14, className: "shrink-0" }),
1913
1913
  /* @__PURE__ */ jsx("span", { className: "min-w-0 flex-1 text-sm font-medium", children: topic.title })