@opensite/ui 0.9.6 → 0.9.7
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.
- package/dist/navbar-enterprise-mega.cjs +64 -64
- package/dist/navbar-enterprise-mega.js +64 -64
- package/dist/navbar-mega-menu.cjs +117 -50
- package/dist/navbar-mega-menu.js +117 -50
- package/dist/registry.cjs +181 -114
- package/dist/registry.js +181 -114
- package/package.json +1 -1
package/dist/registry.cjs
CHANGED
|
@@ -57817,61 +57817,126 @@ var DesktopMenuItem = ({
|
|
|
57817
57817
|
] }) })
|
|
57818
57818
|
] }, `desktop-menu-item-${index}`);
|
|
57819
57819
|
}
|
|
57820
|
-
if (layout === "simple-grid" && link.links) {
|
|
57820
|
+
if (layout === "simple-grid" && (link.links || link.dropdownGroups)) {
|
|
57821
|
+
const allLinks = link.dropdownGroups ? link.dropdownGroups.flatMap((group) => group.links || []) : link.links || [];
|
|
57821
57822
|
return /* @__PURE__ */ jsxRuntime.jsxs(NavigationMenuItem, { children: [
|
|
57822
57823
|
/* @__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: link.label }),
|
|
57823
|
-
/* @__PURE__ */ jsxRuntime.jsx(NavigationMenuContent, { className: "min-w-[700px] p-6", children:
|
|
57824
|
-
|
|
57825
|
-
{
|
|
57826
|
-
|
|
57827
|
-
className: "
|
|
57828
|
-
|
|
57829
|
-
|
|
57830
|
-
|
|
57831
|
-
|
|
57832
|
-
|
|
57833
|
-
|
|
57834
|
-
|
|
57835
|
-
|
|
57836
|
-
|
|
57837
|
-
|
|
57838
|
-
|
|
57839
|
-
|
|
57840
|
-
|
|
57841
|
-
|
|
57842
|
-
|
|
57843
|
-
|
|
57844
|
-
|
|
57845
|
-
|
|
57846
|
-
|
|
57824
|
+
/* @__PURE__ */ jsxRuntime.jsx(NavigationMenuContent, { className: "min-w-[700px] p-6", children: link.dropdownGroups ? (
|
|
57825
|
+
// Render with group headers
|
|
57826
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "space-y-6", children: link.dropdownGroups.map((group, groupIndex) => /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
57827
|
+
group.label && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mb-3 text-xs font-medium tracking-wider uppercase text-muted-foreground", children: group.label }),
|
|
57828
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid auto-rows-fr grid-cols-1 gap-4 sm:grid-cols-2", children: (group.links || []).map((item, itemIndex) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
57829
|
+
NavigationMenuLink,
|
|
57830
|
+
{
|
|
57831
|
+
href: getLinkUrl(item),
|
|
57832
|
+
className: "flex w-full flex-row items-start gap-4 rounded-lg border border-input bg-background p-4 hover:bg-muted hover:text-foreground",
|
|
57833
|
+
children: [
|
|
57834
|
+
item.image && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-20 w-20 shrink-0 overflow-hidden rounded-md border border-border", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
57835
|
+
img.Img,
|
|
57836
|
+
{
|
|
57837
|
+
src: item.image,
|
|
57838
|
+
alt: typeof item.label === "string" ? item.label : "Menu item",
|
|
57839
|
+
className: "h-full w-full object-cover object-center",
|
|
57840
|
+
optixFlowConfig
|
|
57841
|
+
}
|
|
57842
|
+
) }),
|
|
57843
|
+
!item.image && (item.icon || item.iconName) && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex h-10 w-10 shrink-0 items-center justify-center rounded-md border border-border bg-muted/40 text-muted-foreground", children: item.icon ? item.icon : item.iconName ? /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: item.iconName, size: 20 }) : null }),
|
|
57844
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex-1", children: [
|
|
57845
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-sm font-medium", children: item.label }),
|
|
57846
|
+
item.description && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-sm font-normal text-muted-foreground", children: item.description })
|
|
57847
|
+
] })
|
|
57848
|
+
]
|
|
57849
|
+
},
|
|
57850
|
+
`grid-item-${groupIndex}-${itemIndex}`
|
|
57851
|
+
)) })
|
|
57852
|
+
] }, `group-${groupIndex}`)) })
|
|
57853
|
+
) : (
|
|
57854
|
+
// Render without groups
|
|
57855
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid auto-rows-fr grid-cols-1 gap-4 sm:grid-cols-2", children: allLinks.map((item, itemIndex) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
57856
|
+
NavigationMenuLink,
|
|
57857
|
+
{
|
|
57858
|
+
href: getLinkUrl(item),
|
|
57859
|
+
className: "flex w-full flex-row items-start gap-4 rounded-lg border border-input bg-background p-4 hover:bg-muted hover:text-foreground",
|
|
57860
|
+
children: [
|
|
57861
|
+
item.image && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-20 w-20 shrink-0 overflow-hidden rounded-md border border-border", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
57862
|
+
img.Img,
|
|
57863
|
+
{
|
|
57864
|
+
src: item.image,
|
|
57865
|
+
alt: typeof item.label === "string" ? item.label : "Menu item",
|
|
57866
|
+
className: "h-full w-full object-cover object-center",
|
|
57867
|
+
optixFlowConfig
|
|
57868
|
+
}
|
|
57869
|
+
) }),
|
|
57870
|
+
!item.image && (item.icon || item.iconName) && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex h-10 w-10 shrink-0 items-center justify-center rounded-md border border-border bg-muted/40 text-muted-foreground", children: item.icon ? item.icon : item.iconName ? /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: item.iconName, size: 20 }) : null }),
|
|
57871
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex-1", children: [
|
|
57872
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-sm font-medium", children: item.label }),
|
|
57873
|
+
item.description && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-sm font-normal text-muted-foreground", children: item.description })
|
|
57874
|
+
] })
|
|
57875
|
+
]
|
|
57876
|
+
},
|
|
57877
|
+
`grid-item-${itemIndex}`
|
|
57878
|
+
)) })
|
|
57879
|
+
) })
|
|
57847
57880
|
] }, `desktop-menu-item-${index}`);
|
|
57848
57881
|
}
|
|
57849
|
-
if (layout === "list-with-icons" && link.links) {
|
|
57882
|
+
if (layout === "list-with-icons" && (link.links || link.dropdownGroups)) {
|
|
57883
|
+
const allLinks = link.dropdownGroups ? link.dropdownGroups.flatMap((group) => group.links || []) : link.links || [];
|
|
57850
57884
|
return /* @__PURE__ */ jsxRuntime.jsxs(NavigationMenuItem, { children: [
|
|
57851
57885
|
/* @__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: link.label }),
|
|
57852
|
-
/* @__PURE__ */ jsxRuntime.jsx(NavigationMenuContent, { className: "min-w-[400px] p-4", children:
|
|
57853
|
-
|
|
57854
|
-
{
|
|
57855
|
-
|
|
57856
|
-
className: "flex
|
|
57857
|
-
|
|
57858
|
-
|
|
57859
|
-
|
|
57860
|
-
|
|
57861
|
-
|
|
57862
|
-
|
|
57863
|
-
|
|
57864
|
-
|
|
57865
|
-
|
|
57866
|
-
|
|
57867
|
-
|
|
57868
|
-
|
|
57869
|
-
|
|
57870
|
-
|
|
57871
|
-
|
|
57872
|
-
|
|
57873
|
-
|
|
57874
|
-
|
|
57886
|
+
/* @__PURE__ */ jsxRuntime.jsx(NavigationMenuContent, { className: "min-w-[400px] p-4", children: link.dropdownGroups ? (
|
|
57887
|
+
// Render with group headers
|
|
57888
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "space-y-4", children: link.dropdownGroups.map((group, groupIndex) => /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
57889
|
+
group.label && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mb-2 text-xs font-medium tracking-wider uppercase text-muted-foreground", children: group.label }),
|
|
57890
|
+
/* @__PURE__ */ jsxRuntime.jsx("ul", { className: "flex flex-col gap-1", children: (group.links || []).map((item, itemIndex) => /* @__PURE__ */ jsxRuntime.jsx("li", { className: "w-full", children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
57891
|
+
NavigationMenuLink,
|
|
57892
|
+
{
|
|
57893
|
+
href: getLinkUrl(item),
|
|
57894
|
+
className: "flex w-full items-start gap-3 rounded-lg p-3 hover:bg-muted",
|
|
57895
|
+
children: [
|
|
57896
|
+
item.image && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-12 w-12 shrink-0 overflow-hidden rounded-md border border-border", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
57897
|
+
img.Img,
|
|
57898
|
+
{
|
|
57899
|
+
src: item.image,
|
|
57900
|
+
alt: typeof item.label === "string" ? item.label : "Menu item",
|
|
57901
|
+
className: "h-full w-full object-cover object-center",
|
|
57902
|
+
optixFlowConfig
|
|
57903
|
+
}
|
|
57904
|
+
) }),
|
|
57905
|
+
!item.image && (item.icon || item.iconName) && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex h-8 w-8 shrink-0 items-center justify-center rounded-md bg-muted/40 text-muted-foreground", children: item.icon ? item.icon : item.iconName ? /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: item.iconName, size: 16 }) : null }),
|
|
57906
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex-1", children: [
|
|
57907
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-sm font-medium", children: item.label }),
|
|
57908
|
+
item.description && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-xs text-muted-foreground", children: item.description })
|
|
57909
|
+
] })
|
|
57910
|
+
]
|
|
57911
|
+
}
|
|
57912
|
+
) }, `list-item-${groupIndex}-${itemIndex}`)) })
|
|
57913
|
+
] }, `group-${groupIndex}`)) })
|
|
57914
|
+
) : (
|
|
57915
|
+
// Render without groups
|
|
57916
|
+
/* @__PURE__ */ jsxRuntime.jsx("ul", { className: "flex flex-col gap-1", children: allLinks.map((item, itemIndex) => /* @__PURE__ */ jsxRuntime.jsx("li", { className: "w-full", children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
57917
|
+
NavigationMenuLink,
|
|
57918
|
+
{
|
|
57919
|
+
href: getLinkUrl(item),
|
|
57920
|
+
className: "flex w-full items-start gap-3 rounded-lg p-3 hover:bg-muted",
|
|
57921
|
+
children: [
|
|
57922
|
+
item.image && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-12 w-12 shrink-0 overflow-hidden rounded-md border border-border", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
57923
|
+
img.Img,
|
|
57924
|
+
{
|
|
57925
|
+
src: item.image,
|
|
57926
|
+
alt: typeof item.label === "string" ? item.label : "Menu item",
|
|
57927
|
+
className: "h-full w-full object-cover object-center",
|
|
57928
|
+
optixFlowConfig
|
|
57929
|
+
}
|
|
57930
|
+
) }),
|
|
57931
|
+
!item.image && (item.icon || item.iconName) && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex h-8 w-8 shrink-0 items-center justify-center rounded-md bg-muted/40 text-muted-foreground", children: item.icon ? item.icon : item.iconName ? /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: item.iconName, size: 16 }) : null }),
|
|
57932
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex-1", children: [
|
|
57933
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-sm font-medium", children: item.label }),
|
|
57934
|
+
item.description && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-xs text-muted-foreground", children: item.description })
|
|
57935
|
+
] })
|
|
57936
|
+
]
|
|
57937
|
+
}
|
|
57938
|
+
) }, `list-item-${itemIndex}`)) })
|
|
57939
|
+
) })
|
|
57875
57940
|
] }, `desktop-menu-item-${index}`);
|
|
57876
57941
|
}
|
|
57877
57942
|
if (link.href) {
|
|
@@ -57948,7 +58013,9 @@ var NavbarMegaMenu = ({
|
|
|
57948
58013
|
const [open, setOpen] = React52.useState(false);
|
|
57949
58014
|
const [submenuIndex, setSubmenuIndex] = React52.useState(null);
|
|
57950
58015
|
const activeSubmenu = submenuIndex !== null ? menuLinks?.[submenuIndex] : null;
|
|
57951
|
-
const hasDropdownItems = (link) => Boolean(
|
|
58016
|
+
const hasDropdownItems = (link) => Boolean(
|
|
58017
|
+
link.links && link.links.length > 0 || link.dropdownGroups && link.dropdownGroups.length > 0
|
|
58018
|
+
);
|
|
57952
58019
|
const renderActions = () => {
|
|
57953
58020
|
if (!actions || actions.length === 0) return null;
|
|
57954
58021
|
return actions.map((action, index) => {
|
|
@@ -58326,7 +58393,7 @@ var DesktopMenuItem2 = ({
|
|
|
58326
58393
|
if (hasDropdown) {
|
|
58327
58394
|
return /* @__PURE__ */ jsxRuntime.jsxs(NavigationMenuItem, { value: `${index}`, children: [
|
|
58328
58395
|
/* @__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 }),
|
|
58329
|
-
/* @__PURE__ */ jsxRuntime.jsx(NavigationMenuContent, { className: "!rounded-xl !border-0 !p-0", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "w-dvw px-8 pt-6 pb-12", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "container", children: renderDropdownContent(
|
|
58396
|
+
/* @__PURE__ */ jsxRuntime.jsx(NavigationMenuContent, { className: "!rounded-xl !border-0 !p-0 overflow-visible", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "w-dvw max-w-screen-2xl px-8 pt-6 pb-12", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "container mx-auto", children: renderDropdownContent(
|
|
58330
58397
|
{ ...item, layout: effectiveLayout },
|
|
58331
58398
|
optixFlowConfig
|
|
58332
58399
|
) }) }) })
|
|
@@ -58399,7 +58466,7 @@ var SolutionsMenu = ({
|
|
|
58399
58466
|
platformItems,
|
|
58400
58467
|
featuredHeroCard,
|
|
58401
58468
|
optixFlowConfig
|
|
58402
|
-
}) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid gap-8 sm:grid-cols-2", children: [
|
|
58469
|
+
}) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid max-w-full gap-8 sm:grid-cols-2", children: [
|
|
58403
58470
|
featuredHeroCard && /* @__PURE__ */ jsxRuntime.jsx(
|
|
58404
58471
|
Pressable,
|
|
58405
58472
|
{
|
|
@@ -58408,23 +58475,23 @@ var SolutionsMenu = ({
|
|
|
58408
58475
|
"group relative flex h-full flex-row overflow-hidden rounded-lg px-0 pt-8 text-primary-foreground lg:rounded-xl lg:px-6",
|
|
58409
58476
|
featuredHeroCard.variant === "accent" ? "bg-accent text-accent-foreground" : "bg-primary"
|
|
58410
58477
|
),
|
|
58411
|
-
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative flex w-full flex-col space-y-
|
|
58412
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative flex flex-col px-6 lg:mb-6 lg:px-0", children: [
|
|
58413
|
-
featuredHeroCard.subtitle && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "mb-
|
|
58414
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-auto flex items-center space-x-1 text-
|
|
58478
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative flex w-full flex-col space-y-8 text-left md:space-y-6 lg:w-full lg:flex-row lg:justify-between lg:space-y-0 lg:space-x-6 xl:space-x-8", children: [
|
|
58479
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative flex flex-col px-6 lg:mb-6 lg:px-0 lg:flex-1", children: [
|
|
58480
|
+
featuredHeroCard.subtitle && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "mb-4 text-xs font-medium tracking-wider uppercase md:mb-6", children: featuredHeroCard.subtitle }),
|
|
58481
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-auto flex items-center space-x-1 text-base font-semibold", children: [
|
|
58415
58482
|
featuredHeroCard.title,
|
|
58416
58483
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
58417
58484
|
DynamicIcon,
|
|
58418
58485
|
{
|
|
58419
58486
|
name: "lucide/arrow-right",
|
|
58420
|
-
size:
|
|
58487
|
+
size: 18,
|
|
58421
58488
|
className: "ml-1 transition-transform group-hover:translate-x-1"
|
|
58422
58489
|
}
|
|
58423
58490
|
)
|
|
58424
58491
|
] }),
|
|
58425
|
-
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-
|
|
58492
|
+
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-3 text-sm leading-relaxed text-primary-foreground/85", children: featuredHeroCard.description })
|
|
58426
58493
|
] }),
|
|
58427
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative aspect-2/1 overflow-clip rounded-t pl-6 lg:max-w-
|
|
58494
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative aspect-2/1 overflow-clip rounded-t pl-6 lg:max-w-64 lg:shrink-0 lg:pl-0 xl:max-w-72", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
58428
58495
|
img.Img,
|
|
58429
58496
|
{
|
|
58430
58497
|
src: featuredHeroCard.image,
|
|
@@ -58438,11 +58505,11 @@ var SolutionsMenu = ({
|
|
|
58438
58505
|
),
|
|
58439
58506
|
platformItems.length > 0 && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "order-last mt-3 sm:order-0 sm:mt-0 sm:py-2 md:p-6", children: [
|
|
58440
58507
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "mb-4 text-left leading-none md:col-span-2 lg:col-span-4 lg:mb-6", children: /* @__PURE__ */ jsxRuntime.jsx("strong", { className: "text-left text-xs font-medium tracking-wider text-muted-foreground uppercase", children: "Developer Platform" }) }),
|
|
58441
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid gap-4 lg:grid-cols-2", children: platformItems.map((technology) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58508
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid w-full gap-4 lg:grid-cols-2", children: platformItems.map((technology) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58442
58509
|
NavigationMenuLink,
|
|
58443
58510
|
{
|
|
58444
58511
|
href: technology.href,
|
|
58445
|
-
className: "group flex flex-row items-center gap-4",
|
|
58512
|
+
className: "group flex w-full flex-row items-center gap-4 hover:bg-muted rounded-lg p-2 -ml-2",
|
|
58446
58513
|
children: [
|
|
58447
58514
|
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: technology.icon, size: 16 }),
|
|
58448
58515
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1 text-sm font-medium", children: technology.title }),
|
|
@@ -58459,10 +58526,10 @@ var SolutionsMenu = ({
|
|
|
58459
58526
|
technology.id
|
|
58460
58527
|
)) })
|
|
58461
58528
|
] }),
|
|
58462
|
-
solutionCards.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "col-span-full grid grid-cols-1 gap-6 md:grid-cols-2 lg:grid-cols-4 lg:gap-8", children: solutionCards.map((solution) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58529
|
+
solutionCards.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "col-span-full grid w-full grid-cols-1 gap-6 md:grid-cols-2 lg:grid-cols-4 lg:gap-8", children: solutionCards.map((solution) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58463
58530
|
"div",
|
|
58464
58531
|
{
|
|
58465
|
-
className: "rounded-md border border-border p-5",
|
|
58532
|
+
className: "flex flex-col rounded-md border border-border p-5",
|
|
58466
58533
|
children: [
|
|
58467
58534
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "border-b border-border pb-4", children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58468
58535
|
Pressable,
|
|
@@ -58485,11 +58552,11 @@ var SolutionsMenu = ({
|
|
|
58485
58552
|
]
|
|
58486
58553
|
}
|
|
58487
58554
|
) }),
|
|
58488
|
-
/* @__PURE__ */ jsxRuntime.jsx("menu", { className: "mt-6 grid gap-y-4", children: solution.subpages.map((subpage) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58555
|
+
/* @__PURE__ */ jsxRuntime.jsx("menu", { className: "mt-6 grid w-full gap-y-4", children: solution.subpages.map((subpage) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58489
58556
|
NavigationMenuLink,
|
|
58490
58557
|
{
|
|
58491
58558
|
href: subpage.href,
|
|
58492
|
-
className: "group flex flex-row items-center space-x-4 text-left lg:space-x-4 lg:border-0",
|
|
58559
|
+
className: "group flex w-full flex-row items-center space-x-4 text-left hover:bg-muted rounded-lg p-2 -ml-2 lg:space-x-4 lg:border-0",
|
|
58493
58560
|
children: [
|
|
58494
58561
|
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: subpage.icon, size: 16 }),
|
|
58495
58562
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1 text-sm font-medium", children: subpage.title }),
|
|
@@ -58514,7 +58581,7 @@ var ProductsMenu = ({
|
|
|
58514
58581
|
productCategories,
|
|
58515
58582
|
featuredHeroCard,
|
|
58516
58583
|
optixFlowConfig
|
|
58517
|
-
}) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid gap-y-12 lg:flex lg:space-x-8", children: [
|
|
58584
|
+
}) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid max-w-full gap-y-12 lg:flex lg:space-x-8", children: [
|
|
58518
58585
|
featuredHeroCard && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "w-full shrink-0 lg:max-w-[24rem]", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
58519
58586
|
Pressable,
|
|
58520
58587
|
{
|
|
@@ -58524,7 +58591,7 @@ var ProductsMenu = ({
|
|
|
58524
58591
|
featuredHeroCard.variant === "accent" ? "bg-accent text-accent-foreground" : "bg-primary"
|
|
58525
58592
|
),
|
|
58526
58593
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative z-10 flex w-full flex-col text-left", children: [
|
|
58527
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative flex aspect-2/1 max-h-
|
|
58594
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative flex aspect-2/1 max-h-48 w-full flex-1 justify-center", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
58528
58595
|
img.Img,
|
|
58529
58596
|
{
|
|
58530
58597
|
src: featuredHeroCard.image,
|
|
@@ -58534,40 +58601,40 @@ var ProductsMenu = ({
|
|
|
58534
58601
|
}
|
|
58535
58602
|
) }),
|
|
58536
58603
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative z-20 flex flex-col rounded-b-xl bg-primary p-6", children: [
|
|
58537
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center space-x-1 text-
|
|
58604
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center space-x-1 text-base font-semibold", children: [
|
|
58538
58605
|
featuredHeroCard.title,
|
|
58539
58606
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
58540
58607
|
DynamicIcon,
|
|
58541
58608
|
{
|
|
58542
58609
|
name: "lucide/arrow-right",
|
|
58543
|
-
size:
|
|
58610
|
+
size: 18,
|
|
58544
58611
|
className: "ml-1 transition-transform group-hover:translate-x-1"
|
|
58545
58612
|
}
|
|
58546
58613
|
)
|
|
58547
58614
|
] }),
|
|
58548
|
-
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-
|
|
58615
|
+
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-3 text-sm leading-relaxed text-primary-foreground/85", children: featuredHeroCard.description })
|
|
58549
58616
|
] })
|
|
58550
58617
|
] })
|
|
58551
58618
|
}
|
|
58552
58619
|
) }),
|
|
58553
|
-
productCategories.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid w-full gap-y-12 lg:gap-y-6", children: productCategories.map((category) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid gap-y-2 lg:gap-y-6", children: [
|
|
58620
|
+
productCategories.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid w-full gap-y-12 overflow-hidden lg:gap-y-6", children: productCategories.map((category) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid w-full gap-y-2 lg:gap-y-6", children: [
|
|
58554
58621
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "border-border text-left lg:border-b lg:pb-3", children: /* @__PURE__ */ jsxRuntime.jsx("strong", { className: "text-left text-xs font-medium tracking-wider text-muted-foreground uppercase", children: category.title }) }),
|
|
58555
|
-
/* @__PURE__ */ jsxRuntime.jsx("menu", { className: "grid md:grid-cols-3 md:gap-x-5 lg:gap-y-7", children: category.products.map((product) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58622
|
+
/* @__PURE__ */ jsxRuntime.jsx("menu", { className: "grid w-full auto-cols-fr md:grid-cols-3 md:gap-x-5 lg:gap-y-7", children: category.products.map((product) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58556
58623
|
NavigationMenuLink,
|
|
58557
58624
|
{
|
|
58558
58625
|
href: product.href,
|
|
58559
|
-
className: "group flex flex-row items-center space-x-
|
|
58626
|
+
className: "group flex w-full flex-row items-center space-x-4 border-b border-border py-5 text-left hover:bg-muted rounded-lg px-2 -ml-2 sm:py-7 lg:border-0 lg:py-2",
|
|
58560
58627
|
children: [
|
|
58561
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative flex aspect-square w-16 shrink-0 items-center justify-center overflow-clip rounded md:size-
|
|
58628
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative flex aspect-square w-16 shrink-0 items-center justify-center overflow-clip rounded md:size-16", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
58562
58629
|
img.Img,
|
|
58563
58630
|
{
|
|
58564
58631
|
src: product.image,
|
|
58565
58632
|
alt: product.title,
|
|
58566
|
-
className: "object-cover",
|
|
58633
|
+
className: "h-full w-full object-cover",
|
|
58567
58634
|
optixFlowConfig
|
|
58568
58635
|
}
|
|
58569
58636
|
) }),
|
|
58570
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex-1", children: [
|
|
58637
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex-1 min-w-0", children: [
|
|
58571
58638
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-sm font-medium", children: product.title }),
|
|
58572
58639
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-1 text-xs text-muted-foreground", children: product.description })
|
|
58573
58640
|
] }),
|
|
@@ -58576,7 +58643,7 @@ var ProductsMenu = ({
|
|
|
58576
58643
|
{
|
|
58577
58644
|
name: "lucide/arrow-right",
|
|
58578
58645
|
size: 16,
|
|
58579
|
-
className: "transition-transform group-hover:translate-x-1 lg:hidden"
|
|
58646
|
+
className: "shrink-0 transition-transform group-hover:translate-x-1 lg:hidden"
|
|
58580
58647
|
}
|
|
58581
58648
|
)
|
|
58582
58649
|
]
|
|
@@ -58590,7 +58657,7 @@ var GlobalMenu = ({
|
|
|
58590
58657
|
regions,
|
|
58591
58658
|
featuredHeroCard,
|
|
58592
58659
|
optixFlowConfig
|
|
58593
|
-
}) => /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
58660
|
+
}) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "max-w-full overflow-hidden", children: [
|
|
58594
58661
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-6 lg:flex lg:space-y-0 lg:space-x-8", children: [
|
|
58595
58662
|
featuredHeroCard && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "w-full shrink-0 lg:max-w-[18rem]", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
58596
58663
|
Pressable,
|
|
@@ -58601,7 +58668,7 @@ var GlobalMenu = ({
|
|
|
58601
58668
|
featuredHeroCard.variant === "accent" ? "bg-accent text-accent-foreground" : "bg-primary"
|
|
58602
58669
|
),
|
|
58603
58670
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative z-10 flex w-full flex-col-reverse text-left lg:flex-col", children: [
|
|
58604
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative flex aspect-4/3 max-h-
|
|
58671
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative flex aspect-4/3 max-h-48 w-full flex-1 justify-center", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
58605
58672
|
img.Img,
|
|
58606
58673
|
{
|
|
58607
58674
|
src: featuredHeroCard.image,
|
|
@@ -58611,32 +58678,32 @@ var GlobalMenu = ({
|
|
|
58611
58678
|
}
|
|
58612
58679
|
) }),
|
|
58613
58680
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative z-20 flex flex-col rounded-b-xl bg-primary p-6", children: [
|
|
58614
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center space-x-1 text-
|
|
58681
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center space-x-1 text-base font-semibold", children: [
|
|
58615
58682
|
featuredHeroCard.title,
|
|
58616
58683
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
58617
58684
|
DynamicIcon,
|
|
58618
58685
|
{
|
|
58619
58686
|
name: "lucide/arrow-right",
|
|
58620
|
-
size:
|
|
58687
|
+
size: 18,
|
|
58621
58688
|
className: "ml-1 transition-transform group-hover:translate-x-1"
|
|
58622
58689
|
}
|
|
58623
58690
|
)
|
|
58624
58691
|
] }),
|
|
58625
|
-
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-
|
|
58692
|
+
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-3 text-sm leading-relaxed text-primary-foreground/85", children: featuredHeroCard.description })
|
|
58626
58693
|
] })
|
|
58627
58694
|
] })
|
|
58628
58695
|
}
|
|
58629
58696
|
) }),
|
|
58630
|
-
featureCategories.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid w-full gap-y-12 lg:gap-y-6", children: featureCategories.map((category) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid gap-y-2 lg:gap-y-6", children: [
|
|
58697
|
+
featureCategories.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid w-full gap-y-12 overflow-hidden lg:gap-y-6", children: featureCategories.map((category) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid w-full gap-y-2 lg:gap-y-6", children: [
|
|
58631
58698
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "border-border text-left lg:border-b lg:pb-3", children: /* @__PURE__ */ jsxRuntime.jsx("strong", { className: "text-left text-xs font-medium tracking-wider text-muted-foreground uppercase", children: category.title }) }),
|
|
58632
|
-
/* @__PURE__ */ jsxRuntime.jsx("menu", { className: "grid md:grid-cols-3 md:gap-x-6 lg:gap-y-6", children: category.features.map((feature) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58699
|
+
/* @__PURE__ */ jsxRuntime.jsx("menu", { className: "grid w-full auto-cols-fr md:grid-cols-3 md:gap-x-6 lg:gap-y-6", children: category.features.map((feature) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58633
58700
|
NavigationMenuLink,
|
|
58634
58701
|
{
|
|
58635
58702
|
href: feature.href,
|
|
58636
|
-
className: "group flex flex-row items-center space-x-4 border-b border-border py-5 text-left sm:py-7 lg:border-0 lg:py-0",
|
|
58703
|
+
className: "group flex w-full flex-row items-center space-x-4 border-b border-border py-5 text-left hover:bg-muted rounded-lg px-2 -ml-2 sm:py-7 lg:border-0 lg:py-0",
|
|
58637
58704
|
children: [
|
|
58638
58705
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex aspect-square size-9 shrink-0 items-center justify-center", children: /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: feature.icon, size: 20 }) }),
|
|
58639
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex-1", children: [
|
|
58706
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex-1 min-w-0", children: [
|
|
58640
58707
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-sm font-medium", children: feature.title }),
|
|
58641
58708
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-1 text-xs text-muted-foreground", children: feature.description })
|
|
58642
58709
|
] }),
|
|
@@ -58645,7 +58712,7 @@ var GlobalMenu = ({
|
|
|
58645
58712
|
{
|
|
58646
58713
|
name: "lucide/arrow-right",
|
|
58647
58714
|
size: 16,
|
|
58648
|
-
className: "transition-transform group-hover:translate-x-1 lg:hidden"
|
|
58715
|
+
className: "shrink-0 transition-transform group-hover:translate-x-1 lg:hidden"
|
|
58649
58716
|
}
|
|
58650
58717
|
)
|
|
58651
58718
|
]
|
|
@@ -58656,26 +58723,26 @@ var GlobalMenu = ({
|
|
|
58656
58723
|
] }),
|
|
58657
58724
|
regions.length > 0 && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-8", children: [
|
|
58658
58725
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "mb-6 border-border pb-1 text-left lg:border-b", children: /* @__PURE__ */ jsxRuntime.jsx("strong", { className: "text-left text-xs font-medium tracking-wider text-muted-foreground uppercase", children: "Popular Locations" }) }),
|
|
58659
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid gap-6 md:grid-cols-3 lg:grid-cols-4", children: regions.map((region) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58726
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid w-full gap-6 md:grid-cols-3 lg:grid-cols-4", children: regions.map((region) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58660
58727
|
"div",
|
|
58661
58728
|
{
|
|
58662
|
-
className: "space-y-6 rounded-md border border-border p-6 lg:border-0 lg:p-0",
|
|
58729
|
+
className: "flex w-full flex-col space-y-6 rounded-md border border-border p-6 lg:border-0 lg:p-0",
|
|
58663
58730
|
children: [
|
|
58664
58731
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-left text-xs text-muted-foreground", children: region.title }),
|
|
58665
|
-
/* @__PURE__ */ jsxRuntime.jsx("menu", { className: "grid gap-y-3 border-t border-border pt-6 lg:border-0 lg:pt-0", children: region.locations.map((location) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58732
|
+
/* @__PURE__ */ jsxRuntime.jsx("menu", { className: "grid w-full gap-y-3 border-t border-border pt-6 lg:border-0 lg:pt-0", children: region.locations.map((location) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58666
58733
|
NavigationMenuLink,
|
|
58667
58734
|
{
|
|
58668
58735
|
href: location.href,
|
|
58669
|
-
className: "group flex flex-row items-center space-x-4 text-left lg:space-x-4 lg:border-0 lg:py-0",
|
|
58736
|
+
className: "group flex w-full flex-row items-center space-x-4 text-left hover:bg-muted rounded-lg p-2 -ml-2 lg:space-x-4 lg:border-0 lg:py-0",
|
|
58670
58737
|
children: [
|
|
58671
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex size-4 items-center justify-center", children: location.icon }),
|
|
58672
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1 text-sm font-medium", children: location.title }),
|
|
58738
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex size-4 shrink-0 items-center justify-center", children: location.icon }),
|
|
58739
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1 min-w-0 text-sm font-medium", children: location.title }),
|
|
58673
58740
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
58674
58741
|
DynamicIcon,
|
|
58675
58742
|
{
|
|
58676
58743
|
name: "lucide/arrow-right",
|
|
58677
58744
|
size: 16,
|
|
58678
|
-
className: "transition-transform group-hover:translate-x-1 lg:hidden"
|
|
58745
|
+
className: "shrink-0 transition-transform group-hover:translate-x-1 lg:hidden"
|
|
58679
58746
|
}
|
|
58680
58747
|
)
|
|
58681
58748
|
]
|
|
@@ -58692,7 +58759,7 @@ var PartnersMenu = ({
|
|
|
58692
58759
|
partnerCards,
|
|
58693
58760
|
featuredHeroCard,
|
|
58694
58761
|
optixFlowConfig
|
|
58695
|
-
}) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid gap-y-6 md:grid-cols-2 md:gap-x-6 lg:grid-cols-4", children: [
|
|
58762
|
+
}) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid max-w-full gap-y-6 md:grid-cols-2 md:gap-x-6 lg:grid-cols-4", children: [
|
|
58696
58763
|
featuredHeroCard && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "md:col-span-2", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
58697
58764
|
Pressable,
|
|
58698
58765
|
{
|
|
@@ -58703,18 +58770,18 @@ var PartnersMenu = ({
|
|
|
58703
58770
|
),
|
|
58704
58771
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative z-10 flex w-full flex-col-reverse text-left", children: [
|
|
58705
58772
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative z-20 flex flex-col px-6 pt-6 pb-56 md:pt-40 md:pb-6", children: [
|
|
58706
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-auto flex items-center space-x-1 text-
|
|
58773
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-auto flex items-center space-x-1 text-base font-semibold", children: [
|
|
58707
58774
|
featuredHeroCard.title,
|
|
58708
58775
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
58709
58776
|
DynamicIcon,
|
|
58710
58777
|
{
|
|
58711
58778
|
name: "lucide/arrow-right",
|
|
58712
|
-
size:
|
|
58779
|
+
size: 18,
|
|
58713
58780
|
className: "ml-1 transition-transform group-hover:translate-x-1"
|
|
58714
58781
|
}
|
|
58715
58782
|
)
|
|
58716
58783
|
] }),
|
|
58717
|
-
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-
|
|
58784
|
+
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-3 text-sm leading-relaxed", children: featuredHeroCard.description })
|
|
58718
58785
|
] }),
|
|
58719
58786
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
58720
58787
|
"div",
|
|
@@ -58737,14 +58804,14 @@ var PartnersMenu = ({
|
|
|
58737
58804
|
] })
|
|
58738
58805
|
}
|
|
58739
58806
|
) }),
|
|
58740
|
-
partnerCards.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid gap-4 md:col-span-2 lg:col-span-2", children: partnerCards.map((card) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
58807
|
+
partnerCards.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid w-full gap-4 md:col-span-2 lg:col-span-2", children: partnerCards.map((card) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
58741
58808
|
NavigationMenuLink,
|
|
58742
58809
|
{
|
|
58743
58810
|
href: card.href,
|
|
58744
|
-
className: "group flex w-full flex-row items-center rounded-lg border border-border lg:rounded-xl",
|
|
58745
|
-
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-start p-6 text-left", children: [
|
|
58746
|
-
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: card.icon, size: 32 }),
|
|
58747
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "ml-4", children: [
|
|
58811
|
+
className: "group flex w-full flex-row items-center rounded-lg border border-border hover:bg-muted lg:rounded-xl",
|
|
58812
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex w-full items-start p-6 text-left", children: [
|
|
58813
|
+
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: card.icon, size: 32, className: "shrink-0" }),
|
|
58814
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "ml-4 flex-1 min-w-0", children: [
|
|
58748
58815
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-auto mb-1 text-sm font-bold", children: card.title }),
|
|
58749
58816
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-xs text-muted-foreground", children: card.description })
|
|
58750
58817
|
] })
|
|
@@ -58757,7 +58824,7 @@ var ResourcesMenu = ({
|
|
|
58757
58824
|
resourceItems,
|
|
58758
58825
|
topicGroups,
|
|
58759
58826
|
featuredHeroCard
|
|
58760
|
-
}) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid gap-8 lg:grid-cols-3", children: [
|
|
58827
|
+
}) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid max-w-full gap-8 lg:grid-cols-3", children: [
|
|
58761
58828
|
featuredHeroCard && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "lg:col-span-1", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
58762
58829
|
Pressable,
|
|
58763
58830
|
{
|
|
@@ -58768,18 +58835,18 @@ var ResourcesMenu = ({
|
|
|
58768
58835
|
),
|
|
58769
58836
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative z-10 flex w-full flex-col-reverse text-left", children: [
|
|
58770
58837
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative z-20 flex flex-col px-6 pt-6 pb-56 md:pt-40 md:pb-6", children: [
|
|
58771
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-auto flex items-center space-x-1 text-
|
|
58838
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-auto flex items-center space-x-1 text-base font-semibold", children: [
|
|
58772
58839
|
featuredHeroCard.title,
|
|
58773
58840
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
58774
58841
|
DynamicIcon,
|
|
58775
58842
|
{
|
|
58776
58843
|
name: "lucide/arrow-right",
|
|
58777
|
-
size:
|
|
58844
|
+
size: 18,
|
|
58778
58845
|
className: "ml-1 transition-transform group-hover:translate-x-1"
|
|
58779
58846
|
}
|
|
58780
58847
|
)
|
|
58781
58848
|
] }),
|
|
58782
|
-
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-
|
|
58849
|
+
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-3 text-sm leading-relaxed", children: featuredHeroCard.description })
|
|
58783
58850
|
] }),
|
|
58784
58851
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute inset-0", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
58785
58852
|
img.Img,
|
|
@@ -58793,13 +58860,13 @@ var ResourcesMenu = ({
|
|
|
58793
58860
|
] })
|
|
58794
58861
|
}
|
|
58795
58862
|
) }),
|
|
58796
|
-
resourceItems.length > 0 && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn(featuredHeroCard ? "lg:col-span-1" : "lg:col-span-2"), children: [
|
|
58863
|
+
resourceItems.length > 0 && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn(featuredHeroCard ? "lg:col-span-1" : "lg:col-span-2", "overflow-hidden"), children: [
|
|
58797
58864
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "mb-6 text-left", children: /* @__PURE__ */ jsxRuntime.jsx("strong", { className: "text-xs font-medium tracking-wider text-muted-foreground uppercase", children: "Resources" }) }),
|
|
58798
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid gap-4 md:grid-cols-2 lg:grid-cols-2", children: resourceItems.map((resource) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58865
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid w-full gap-4 md:grid-cols-2 lg:grid-cols-2", children: resourceItems.map((resource) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
58799
58866
|
NavigationMenuLink,
|
|
58800
58867
|
{
|
|
58801
58868
|
href: resource.href,
|
|
58802
|
-
className: "group flex flex-row items-start gap-4 rounded-lg border border-border p-4 hover:bg-
|
|
58869
|
+
className: "group flex w-full flex-row items-start gap-4 rounded-lg border border-border p-4 hover:bg-muted",
|
|
58803
58870
|
children: [
|
|
58804
58871
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
58805
58872
|
DynamicIcon,
|
|
@@ -58809,7 +58876,7 @@ var ResourcesMenu = ({
|
|
|
58809
58876
|
className: "mt-1 shrink-0"
|
|
58810
58877
|
}
|
|
58811
58878
|
),
|
|
58812
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
58879
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex-1 min-w-0", children: [
|
|
58813
58880
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-sm font-medium", children: resource.title }),
|
|
58814
58881
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-1 text-xs text-muted-foreground", children: resource.description })
|
|
58815
58882
|
] })
|
|
@@ -58824,10 +58891,10 @@ var ResourcesMenu = ({
|
|
|
58824
58891
|
NavigationMenuLink,
|
|
58825
58892
|
{
|
|
58826
58893
|
href: topic.href,
|
|
58827
|
-
className: "group flex flex-row items-center gap-3",
|
|
58894
|
+
className: "group flex flex-row items-center gap-3 hover:bg-muted rounded-lg p-2 -ml-2",
|
|
58828
58895
|
children: [
|
|
58829
|
-
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: topic.icon, size: 16 }),
|
|
58830
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm font-medium", children: topic.title })
|
|
58896
|
+
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: topic.icon, size: 16, className: "shrink-0" }),
|
|
58897
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "flex-1 text-sm font-medium", children: topic.title })
|
|
58831
58898
|
]
|
|
58832
58899
|
},
|
|
58833
58900
|
topic.id
|