@opensite/ui 1.5.1 → 1.5.3
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/about-location-info-hero.cjs +26 -48
- package/dist/about-location-info-hero.d.cts +1 -1
- package/dist/about-location-info-hero.d.ts +1 -1
- package/dist/about-location-info-hero.js +26 -48
- package/dist/components.cjs +338 -133
- package/dist/components.js +338 -133
- package/dist/footer-accordion-social.cjs +3 -1
- package/dist/footer-accordion-social.js +3 -1
- package/dist/footer-animated-social.cjs +13 -2
- package/dist/footer-animated-social.js +13 -2
- package/dist/footer-background-card.cjs +239 -69
- package/dist/footer-background-card.d.cts +9 -1
- package/dist/footer-background-card.d.ts +9 -1
- package/dist/footer-background-card.js +240 -70
- package/dist/footer-brand-description.cjs +3 -1
- package/dist/footer-brand-description.js +3 -1
- package/dist/footer-brand-links-contact.cjs +3 -1
- package/dist/footer-brand-links-contact.js +3 -1
- package/dist/footer-comprehensive-links.cjs +3 -1
- package/dist/footer-comprehensive-links.js +3 -1
- package/dist/footer-contact-card.cjs +3 -1
- package/dist/footer-contact-card.js +3 -1
- package/dist/footer-cta-banner.cjs +3 -1
- package/dist/footer-cta-banner.js +3 -1
- package/dist/footer-cta-social.cjs +3 -1
- package/dist/footer-cta-social.js +3 -1
- package/dist/footer-info-cards-accordion.cjs +3 -1
- package/dist/footer-info-cards-accordion.js +3 -1
- package/dist/footer-nav-social.cjs +159 -62
- package/dist/footer-nav-social.d.cts +9 -1
- package/dist/footer-nav-social.d.ts +9 -1
- package/dist/footer-nav-social.js +159 -62
- package/dist/footer-newsletter-contact.cjs +3 -1
- package/dist/footer-newsletter-contact.js +3 -1
- package/dist/footer-newsletter-grid.cjs +3 -1
- package/dist/footer-newsletter-grid.js +3 -1
- package/dist/footer-newsletter-minimal.cjs +3 -1
- package/dist/footer-newsletter-minimal.js +3 -1
- package/dist/footer-simple-centered.cjs +1 -1
- package/dist/footer-simple-centered.d.cts +1 -1
- package/dist/footer-simple-centered.d.ts +1 -1
- package/dist/footer-simple-centered.js +1 -1
- package/dist/footer-social-apps.cjs +3 -1
- package/dist/footer-social-apps.js +3 -1
- package/dist/footer-social-newsletter.cjs +3 -1
- package/dist/footer-social-newsletter.js +3 -1
- package/dist/footer-split-image-accordion.cjs +3 -1
- package/dist/footer-split-image-accordion.js +3 -1
- package/dist/hero-centered-screenshot.cjs +46 -59
- package/dist/hero-centered-screenshot.d.cts +1 -1
- package/dist/hero-centered-screenshot.d.ts +1 -1
- package/dist/hero-centered-screenshot.js +46 -59
- package/dist/index.cjs +338 -133
- package/dist/index.js +338 -133
- package/dist/navbar-fullscreen-menu.cjs +3 -1
- package/dist/navbar-fullscreen-menu.js +3 -1
- package/dist/navbar-transparent-overlay.cjs +3 -1
- package/dist/navbar-transparent-overlay.js +3 -1
- package/dist/registry.cjs +410 -166
- package/dist/registry.js +410 -166
- package/dist/social-link-icon.cjs +3 -1
- package/dist/social-link-icon.js +3 -1
- package/package.json +2 -2
package/dist/registry.js
CHANGED
|
@@ -3866,13 +3866,13 @@ function AboutLocationInfoHero({
|
|
|
3866
3866
|
imagesClassName,
|
|
3867
3867
|
contentPosition = "left",
|
|
3868
3868
|
mobileStackOrder = "content-first",
|
|
3869
|
-
accentColor = "hsl(var(--
|
|
3869
|
+
accentColor = "hsl(var(--muted))",
|
|
3870
3870
|
background,
|
|
3871
|
-
spacing,
|
|
3872
3871
|
pattern,
|
|
3873
3872
|
patternOpacity,
|
|
3874
3873
|
className,
|
|
3875
|
-
containerClassName,
|
|
3874
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
3875
|
+
spacing = "py-6 md:py-32",
|
|
3876
3876
|
optixFlowConfig
|
|
3877
3877
|
}) {
|
|
3878
3878
|
const isSingleImage = (images?.length ?? 0) <= 1;
|
|
@@ -3893,21 +3893,27 @@ function AboutLocationInfoHero({
|
|
|
3893
3893
|
const hoursSectionsContent = useMemo(() => {
|
|
3894
3894
|
if (hoursSectionsSlot) return hoursSectionsSlot;
|
|
3895
3895
|
if (!hoursSections || hoursSections.length === 0) return null;
|
|
3896
|
-
return /* @__PURE__ */ jsx("div", { className: cn("space-y-
|
|
3896
|
+
return /* @__PURE__ */ jsx("div", { className: cn("space-y-6 md:space-y-12", hoursSectionsClassName), children: hoursSections.map((section, sectionIndex) => /* @__PURE__ */ jsxs("div", { children: [
|
|
3897
3897
|
section.label && (typeof section.label === "string" ? /* @__PURE__ */ jsx(
|
|
3898
3898
|
"h3",
|
|
3899
3899
|
{
|
|
3900
|
-
className: "mb-
|
|
3900
|
+
className: "mb-4 text-lg font-semibold ",
|
|
3901
3901
|
style: { color: accentColor },
|
|
3902
3902
|
children: section.label
|
|
3903
3903
|
}
|
|
3904
3904
|
) : section.label),
|
|
3905
|
-
section.hours && section.hours.length > 0 && /* @__PURE__ */ jsx("div", { className: "flex flex-wrap gap-x-
|
|
3906
|
-
item.day && (typeof item.day === "string" ? /* @__PURE__ */ jsx("span", { className:
|
|
3907
|
-
item.time && (typeof item.time === "string" ? /* @__PURE__ */ jsx("span", { children: item.time }) : item.time)
|
|
3905
|
+
section.hours && section.hours.length > 0 && /* @__PURE__ */ jsx("div", { className: "flex flex-wrap gap-x-4 gap-y-2", children: section.hours.map((item, itemIndex) => /* @__PURE__ */ jsxs("div", { className: "flex flex-col", children: [
|
|
3906
|
+
item.day && (typeof item.day === "string" ? /* @__PURE__ */ jsx("span", { className: "text-white text-sm font-semibold uppercase opacity-60 tracking-wide", children: item.day }) : item.day),
|
|
3907
|
+
item.time && (typeof item.time === "string" ? /* @__PURE__ */ jsx("span", { className: "text-white text-sm font-semibold uppercase opacity-60", children: item.time }) : item.time)
|
|
3908
3908
|
] }, itemIndex)) })
|
|
3909
3909
|
] }, sectionIndex)) });
|
|
3910
|
-
}, [
|
|
3910
|
+
}, [
|
|
3911
|
+
hoursSectionsSlot,
|
|
3912
|
+
hoursSections,
|
|
3913
|
+
hoursSectionsClassName,
|
|
3914
|
+
accentColor,
|
|
3915
|
+
background
|
|
3916
|
+
]);
|
|
3911
3917
|
const imagesContent = useMemo(() => {
|
|
3912
3918
|
if (imagesSlot) return imagesSlot;
|
|
3913
3919
|
if (!images || images.length === 0) return null;
|
|
@@ -3916,7 +3922,7 @@ function AboutLocationInfoHero({
|
|
|
3916
3922
|
"div",
|
|
3917
3923
|
{
|
|
3918
3924
|
className: cn(
|
|
3919
|
-
"relative aspect-
|
|
3925
|
+
"relative aspect-4/3 w-full max-w-lg overflow-hidden rounded-lg shadow-2xl",
|
|
3920
3926
|
imagesClassName
|
|
3921
3927
|
),
|
|
3922
3928
|
children: /* @__PURE__ */ jsx(
|
|
@@ -3939,7 +3945,7 @@ function AboutLocationInfoHero({
|
|
|
3939
3945
|
imagesClassName
|
|
3940
3946
|
),
|
|
3941
3947
|
children: [
|
|
3942
|
-
/* @__PURE__ */ jsx("div", { className: "absolute left-0 top-0 z-10 aspect-
|
|
3948
|
+
/* @__PURE__ */ jsx("div", { className: "absolute left-0 top-0 z-10 aspect-4/3 w-[70%] overflow-hidden rounded-lg shadow-2xl md:w-[65%]", children: /* @__PURE__ */ jsx(
|
|
3943
3949
|
Img,
|
|
3944
3950
|
{
|
|
3945
3951
|
src: images[0]?.src || imagePlaceholders[5],
|
|
@@ -3948,7 +3954,7 @@ function AboutLocationInfoHero({
|
|
|
3948
3954
|
optixFlowConfig
|
|
3949
3955
|
}
|
|
3950
3956
|
) }),
|
|
3951
|
-
/* @__PURE__ */ jsx("div", { className: "absolute bottom-0 right-0 z-20 aspect-
|
|
3957
|
+
/* @__PURE__ */ jsx("div", { className: "absolute bottom-0 right-0 z-20 aspect-3/4 w-[55%] overflow-hidden rounded-lg shadow-2xl md:w-[50%]", children: /* @__PURE__ */ jsx(
|
|
3952
3958
|
Img,
|
|
3953
3959
|
{
|
|
3954
3960
|
src: images[1]?.src || imagePlaceholders[6],
|
|
@@ -3968,11 +3974,9 @@ function AboutLocationInfoHero({
|
|
|
3968
3974
|
spacing,
|
|
3969
3975
|
pattern,
|
|
3970
3976
|
patternOpacity,
|
|
3971
|
-
className: cn(
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
),
|
|
3975
|
-
children: /* @__PURE__ */ jsx("div", { className: cn("container relative", containerClassName), children: /* @__PURE__ */ jsxs(
|
|
3977
|
+
className: cn("relative w-full overflow-hidden", className),
|
|
3978
|
+
containerClassName,
|
|
3979
|
+
children: /* @__PURE__ */ jsx("div", { className: cn(" relative"), children: /* @__PURE__ */ jsxs(
|
|
3976
3980
|
"div",
|
|
3977
3981
|
{
|
|
3978
3982
|
className: cn(
|
|
@@ -3993,16 +3997,16 @@ function AboutLocationInfoHero({
|
|
|
3993
3997
|
}
|
|
3994
3998
|
) : /* @__PURE__ */ jsx("div", { className: headlineClassName, children: headline })),
|
|
3995
3999
|
actionsContent,
|
|
3996
|
-
address || phone ? /* @__PURE__ */ jsxs("div", { className: "space-y-
|
|
4000
|
+
address || phone ? /* @__PURE__ */ jsxs("div", { className: "space-y-4", children: [
|
|
3997
4001
|
address ? /* @__PURE__ */ jsxs(
|
|
3998
4002
|
"div",
|
|
3999
4003
|
{
|
|
4000
4004
|
className: cn(
|
|
4001
|
-
"flex items-center gap-3 text-
|
|
4005
|
+
"flex items-center gap-3 text-md",
|
|
4002
4006
|
addressClassName
|
|
4003
4007
|
),
|
|
4004
4008
|
children: [
|
|
4005
|
-
/* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/map-pin", size:
|
|
4009
|
+
/* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/map-pin", size: 18 }),
|
|
4006
4010
|
addressHref ? /* @__PURE__ */ jsx(
|
|
4007
4011
|
Pressable,
|
|
4008
4012
|
{
|
|
@@ -4018,11 +4022,11 @@ function AboutLocationInfoHero({
|
|
|
4018
4022
|
"div",
|
|
4019
4023
|
{
|
|
4020
4024
|
className: cn(
|
|
4021
|
-
"flex items-center gap-3 text-
|
|
4025
|
+
"flex items-center gap-3 text-md",
|
|
4022
4026
|
phoneClassName
|
|
4023
4027
|
),
|
|
4024
4028
|
children: [
|
|
4025
|
-
/* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/phone", size:
|
|
4029
|
+
/* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/phone", size: 18 }),
|
|
4026
4030
|
phoneHref ? /* @__PURE__ */ jsx(
|
|
4027
4031
|
Pressable,
|
|
4028
4032
|
{
|
|
@@ -20960,7 +20964,7 @@ var platformIconMap = {
|
|
|
20960
20964
|
yelp: "cib/yelp",
|
|
20961
20965
|
spotify: "cib/spotify",
|
|
20962
20966
|
apple: "cib/apple",
|
|
20963
|
-
x: "line-md/twitter-x",
|
|
20967
|
+
x: "line-md/twitter-x-alt",
|
|
20964
20968
|
github: "cib/github",
|
|
20965
20969
|
snapchat: "cib/snapchat",
|
|
20966
20970
|
discord: "cib/discord",
|
|
@@ -20979,6 +20983,8 @@ var platformIconMap = {
|
|
|
20979
20983
|
npmjs: "simple-icons/npm",
|
|
20980
20984
|
crates: "cib/rust",
|
|
20981
20985
|
rubygems: "cib/rubygems",
|
|
20986
|
+
behance: "cib/behance",
|
|
20987
|
+
dribbble: "cib/dribbble",
|
|
20982
20988
|
unknown: "icon-park-solid/circular-connection"
|
|
20983
20989
|
};
|
|
20984
20990
|
var SocialLinkIcon = React52.forwardRef(
|
|
@@ -22163,6 +22169,7 @@ var FooterLogo = ({
|
|
|
22163
22169
|
}
|
|
22164
22170
|
return /* @__PURE__ */ jsx("div", { className: cn("inline-flex items-center", logoClassName), children: logoContent });
|
|
22165
22171
|
};
|
|
22172
|
+
var footer_logo_default = FooterLogo;
|
|
22166
22173
|
function FooterCopyright({
|
|
22167
22174
|
copyright,
|
|
22168
22175
|
className
|
|
@@ -23051,8 +23058,8 @@ function FooterSimpleCentered({
|
|
|
23051
23058
|
bottomLinks,
|
|
23052
23059
|
className,
|
|
23053
23060
|
footerClassName,
|
|
23054
|
-
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
23055
23061
|
contentClassName,
|
|
23062
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
23056
23063
|
spacing = "py-12 md:py-32",
|
|
23057
23064
|
brandClassName,
|
|
23058
23065
|
logoWrapperClassName,
|
|
@@ -23846,6 +23853,8 @@ function FooterBackgroundCard({
|
|
|
23846
23853
|
menuItems,
|
|
23847
23854
|
copyright,
|
|
23848
23855
|
bottomLinks,
|
|
23856
|
+
logoWrapperClassName,
|
|
23857
|
+
logoClassName,
|
|
23849
23858
|
className,
|
|
23850
23859
|
cardClassName,
|
|
23851
23860
|
gridClassName,
|
|
@@ -23864,7 +23873,8 @@ function FooterBackgroundCard({
|
|
|
23864
23873
|
copyrightClassName,
|
|
23865
23874
|
bottomLinksClassName,
|
|
23866
23875
|
background,
|
|
23867
|
-
|
|
23876
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
23877
|
+
spacing = "py-6 md:py-32",
|
|
23868
23878
|
pattern,
|
|
23869
23879
|
patternOpacity,
|
|
23870
23880
|
optixFlowConfig
|
|
@@ -23882,79 +23892,174 @@ function FooterBackgroundCard({
|
|
|
23882
23892
|
patternOpacity,
|
|
23883
23893
|
className: cn("bg-cover bg-center bg-no-repeat", className),
|
|
23884
23894
|
style: sectionStyle,
|
|
23885
|
-
|
|
23886
|
-
|
|
23887
|
-
|
|
23888
|
-
|
|
23889
|
-
|
|
23890
|
-
|
|
23891
|
-
|
|
23892
|
-
|
|
23893
|
-
|
|
23894
|
-
|
|
23895
|
-
|
|
23896
|
-
}
|
|
23897
|
-
),
|
|
23898
|
-
tagline && /* @__PURE__ */ jsx("h3", { className: cn("text-2xl font-medium", taglineClassName), children: tagline })
|
|
23899
|
-
] }),
|
|
23900
|
-
personalMessage && /* @__PURE__ */ jsx("p", { className: cn("mb-6 text-sm leading-relaxed opacity-80", messageClassName), children: personalMessage }),
|
|
23901
|
-
ctaText && /* @__PURE__ */ jsx(
|
|
23902
|
-
Pressable,
|
|
23903
|
-
{
|
|
23904
|
-
href: ctaUrl || "#",
|
|
23905
|
-
className: cn("inline-flex items-center justify-center whitespace-nowrap rounded-md border text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 hover:opacity-80 h-10 px-4 py-2", ctaClassName),
|
|
23906
|
-
children: ctaText
|
|
23907
|
-
}
|
|
23908
|
-
)
|
|
23909
|
-
] }),
|
|
23910
|
-
menuItems && menuItems.length > 0 && menuItems.map((menu, idx) => /* @__PURE__ */ jsxs("div", { className: cn(menuSectionClassName), children: [
|
|
23911
|
-
/* @__PURE__ */ jsx("h3", { className: cn("mb-4 text-sm font-medium tracking-wider uppercase", menuTitleClassName), children: menu.title }),
|
|
23912
|
-
/* @__PURE__ */ jsx("ul", { className: "space-y-3", children: menu.links.map((link, index) => /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
23913
|
-
Pressable,
|
|
23895
|
+
containerClassName,
|
|
23896
|
+
children: /* @__PURE__ */ jsxs(
|
|
23897
|
+
"div",
|
|
23898
|
+
{
|
|
23899
|
+
className: cn(
|
|
23900
|
+
"mx-auto max-w-7xl rounded-2xl p-12 shadow-xl md:p-16 bg-card text-card-foreground",
|
|
23901
|
+
cardClassName
|
|
23902
|
+
),
|
|
23903
|
+
children: [
|
|
23904
|
+
/* @__PURE__ */ jsxs(
|
|
23905
|
+
"div",
|
|
23914
23906
|
{
|
|
23915
|
-
|
|
23916
|
-
|
|
23917
|
-
|
|
23907
|
+
className: cn(
|
|
23908
|
+
"grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-4 lg:gap-12",
|
|
23909
|
+
gridClassName
|
|
23910
|
+
),
|
|
23911
|
+
children: [
|
|
23912
|
+
(profileImage || tagline || personalMessage || ctaText || logo) && /* @__PURE__ */ jsxs("div", { className: cn("lg:col-span-1", profileSectionClassName), children: [
|
|
23913
|
+
/* @__PURE__ */ jsx(
|
|
23914
|
+
footer_logo_default,
|
|
23915
|
+
{
|
|
23916
|
+
logo,
|
|
23917
|
+
logoClassName: cn("mb-12", logoWrapperClassName),
|
|
23918
|
+
logoImageClassName: logoClassName,
|
|
23919
|
+
optixFlowConfig
|
|
23920
|
+
}
|
|
23921
|
+
),
|
|
23922
|
+
(profileImage || tagline) && /* @__PURE__ */ jsxs("div", { className: "mb-4 flex items-center gap-4", children: [
|
|
23923
|
+
profileImage && /* @__PURE__ */ jsx(
|
|
23924
|
+
Img,
|
|
23925
|
+
{
|
|
23926
|
+
src: profileImage,
|
|
23927
|
+
alt: "Profile",
|
|
23928
|
+
className: cn(
|
|
23929
|
+
"h-16 w-16 rounded-full object-cover",
|
|
23930
|
+
profileImageClassName
|
|
23931
|
+
),
|
|
23932
|
+
optixFlowConfig
|
|
23933
|
+
}
|
|
23934
|
+
),
|
|
23935
|
+
tagline && /* @__PURE__ */ jsx(
|
|
23936
|
+
"h3",
|
|
23937
|
+
{
|
|
23938
|
+
className: cn("text-2xl font-medium", taglineClassName),
|
|
23939
|
+
children: tagline
|
|
23940
|
+
}
|
|
23941
|
+
)
|
|
23942
|
+
] }),
|
|
23943
|
+
personalMessage && /* @__PURE__ */ jsx(
|
|
23944
|
+
"p",
|
|
23945
|
+
{
|
|
23946
|
+
className: cn(
|
|
23947
|
+
"mb-6 text-sm leading-relaxed opacity-80",
|
|
23948
|
+
messageClassName
|
|
23949
|
+
),
|
|
23950
|
+
children: personalMessage
|
|
23951
|
+
}
|
|
23952
|
+
),
|
|
23953
|
+
ctaText && /* @__PURE__ */ jsx(
|
|
23954
|
+
Pressable,
|
|
23955
|
+
{
|
|
23956
|
+
href: ctaUrl || "#",
|
|
23957
|
+
className: cn(
|
|
23958
|
+
"inline-flex items-center justify-center whitespace-nowrap rounded-md border text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 hover:opacity-80 h-10 px-4 py-2",
|
|
23959
|
+
ctaClassName
|
|
23960
|
+
),
|
|
23961
|
+
children: ctaText
|
|
23962
|
+
}
|
|
23963
|
+
)
|
|
23964
|
+
] }),
|
|
23965
|
+
menuItems && menuItems.length > 0 && menuItems.map((menu, idx) => /* @__PURE__ */ jsxs(
|
|
23966
|
+
"div",
|
|
23967
|
+
{
|
|
23968
|
+
className: cn("pl-0 md:pl-8", menuSectionClassName),
|
|
23969
|
+
children: [
|
|
23970
|
+
/* @__PURE__ */ jsx(
|
|
23971
|
+
"h3",
|
|
23972
|
+
{
|
|
23973
|
+
className: cn(
|
|
23974
|
+
"mb-4 text-sm font-medium tracking-wider uppercase",
|
|
23975
|
+
menuTitleClassName
|
|
23976
|
+
),
|
|
23977
|
+
children: menu.title
|
|
23978
|
+
}
|
|
23979
|
+
),
|
|
23980
|
+
/* @__PURE__ */ jsx("ul", { className: "space-y-3", children: menu.links.map((link, index) => /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
23981
|
+
Pressable,
|
|
23982
|
+
{
|
|
23983
|
+
href: link.url,
|
|
23984
|
+
className: cn(
|
|
23985
|
+
"border-b border-transparent opacity-80 transition-all duration-300 ease-in-out hover:opacity-100",
|
|
23986
|
+
menuLinkClassName
|
|
23987
|
+
),
|
|
23988
|
+
children: link.text
|
|
23989
|
+
}
|
|
23990
|
+
) }, index)) })
|
|
23991
|
+
]
|
|
23992
|
+
},
|
|
23993
|
+
idx
|
|
23994
|
+
)),
|
|
23995
|
+
(contactTitle || contact) && /* @__PURE__ */ jsxs("div", { className: cn("pl-0 md:pl-8", contactSectionClassName), children: [
|
|
23996
|
+
contactTitle && /* @__PURE__ */ jsx(
|
|
23997
|
+
"h3",
|
|
23998
|
+
{
|
|
23999
|
+
className: cn(
|
|
24000
|
+
"mb-4 text-sm font-medium tracking-wider uppercase",
|
|
24001
|
+
contactTitleClassName
|
|
24002
|
+
),
|
|
24003
|
+
children: contactTitle
|
|
24004
|
+
}
|
|
24005
|
+
),
|
|
24006
|
+
contact && /* @__PURE__ */ jsxs("ul", { className: "space-y-3", children: [
|
|
24007
|
+
contact.phone && /* @__PURE__ */ jsx("li", { className: cn("opacity-80", contactItemClassName), children: contact.phone }),
|
|
24008
|
+
contact.email && /* @__PURE__ */ jsx("li", { className: cn("opacity-80", contactItemClassName), children: contact.email }),
|
|
24009
|
+
(contact.location || contact.timezone) && /* @__PURE__ */ jsxs("li", { className: cn("opacity-80", contactItemClassName), children: [
|
|
24010
|
+
contact.location,
|
|
24011
|
+
contact.location && contact.timezone && " \u2022 ",
|
|
24012
|
+
contact.timezone
|
|
24013
|
+
] })
|
|
24014
|
+
] })
|
|
24015
|
+
] })
|
|
24016
|
+
]
|
|
23918
24017
|
}
|
|
23919
|
-
)
|
|
23920
|
-
|
|
23921
|
-
|
|
23922
|
-
contactTitle && /* @__PURE__ */ jsx("h3", { className: cn("mb-4 text-sm font-medium tracking-wider uppercase", contactTitleClassName), children: contactTitle }),
|
|
23923
|
-
contact && /* @__PURE__ */ jsxs("ul", { className: "space-y-3", children: [
|
|
23924
|
-
contact.phone && /* @__PURE__ */ jsx("li", { className: cn("opacity-80", contactItemClassName), children: contact.phone }),
|
|
23925
|
-
contact.email && /* @__PURE__ */ jsx("li", { className: cn("opacity-80", contactItemClassName), children: contact.email }),
|
|
23926
|
-
(contact.location || contact.timezone) && /* @__PURE__ */ jsxs("li", { className: cn("opacity-80", contactItemClassName), children: [
|
|
23927
|
-
contact.location,
|
|
23928
|
-
contact.location && contact.timezone && " \u2022 ",
|
|
23929
|
-
contact.timezone
|
|
23930
|
-
] })
|
|
23931
|
-
] })
|
|
23932
|
-
] })
|
|
23933
|
-
] }),
|
|
23934
|
-
/* @__PURE__ */ jsxs("div", { className: cn("mt-12 flex flex-col items-center justify-between gap-4 border-t pt-8 md:flex-row", bottomClassName), children: [
|
|
23935
|
-
/* @__PURE__ */ jsxs("div", { className: cn("flex flex-col gap-2 text-sm opacity-80 md:flex-row md:items-center md:gap-4", copyrightClassName), children: [
|
|
23936
|
-
/* @__PURE__ */ jsx(FooterCopyright, { copyright }),
|
|
23937
|
-
/* @__PURE__ */ jsx(
|
|
23938
|
-
BrandAttribution,
|
|
24018
|
+
),
|
|
24019
|
+
/* @__PURE__ */ jsxs(
|
|
24020
|
+
"div",
|
|
23939
24021
|
{
|
|
23940
|
-
|
|
23941
|
-
|
|
23942
|
-
|
|
23943
|
-
|
|
24022
|
+
className: cn(
|
|
24023
|
+
"mt-12 flex flex-col items-center justify-between gap-4 border-t pt-8 md:flex-row",
|
|
24024
|
+
bottomClassName
|
|
24025
|
+
),
|
|
24026
|
+
children: [
|
|
24027
|
+
/* @__PURE__ */ jsxs(
|
|
24028
|
+
"div",
|
|
24029
|
+
{
|
|
24030
|
+
className: cn(
|
|
24031
|
+
"flex flex-col gap-2 text-sm opacity-80 md:flex-row md:items-center md:gap-4",
|
|
24032
|
+
copyrightClassName
|
|
24033
|
+
),
|
|
24034
|
+
children: [
|
|
24035
|
+
/* @__PURE__ */ jsx(FooterCopyright, { copyright }),
|
|
24036
|
+
/* @__PURE__ */ jsx(
|
|
24037
|
+
BrandAttribution,
|
|
24038
|
+
{
|
|
24039
|
+
internalBrandSlug: "open_site_ai",
|
|
24040
|
+
optionIndex: 3,
|
|
24041
|
+
variant: "span",
|
|
24042
|
+
linkClassName: "hover:opacity-100"
|
|
24043
|
+
}
|
|
24044
|
+
)
|
|
24045
|
+
]
|
|
24046
|
+
}
|
|
24047
|
+
),
|
|
24048
|
+
bottomLinks && bottomLinks.length > 0 && /* @__PURE__ */ jsx("div", { className: cn("flex gap-4", bottomLinksClassName), children: bottomLinks.map((link, idx) => /* @__PURE__ */ jsx(
|
|
24049
|
+
Pressable,
|
|
24050
|
+
{
|
|
24051
|
+
href: link.url,
|
|
24052
|
+
className: "text-sm opacity-80 transition-colors hover:opacity-100",
|
|
24053
|
+
children: link.text
|
|
24054
|
+
},
|
|
24055
|
+
idx
|
|
24056
|
+
)) })
|
|
24057
|
+
]
|
|
23944
24058
|
}
|
|
23945
24059
|
)
|
|
23946
|
-
]
|
|
23947
|
-
|
|
23948
|
-
|
|
23949
|
-
{
|
|
23950
|
-
href: link.url,
|
|
23951
|
-
className: "text-sm opacity-80 transition-colors hover:opacity-100",
|
|
23952
|
-
children: link.text
|
|
23953
|
-
},
|
|
23954
|
-
idx
|
|
23955
|
-
)) })
|
|
23956
|
-
] })
|
|
23957
|
-
] })
|
|
24060
|
+
]
|
|
24061
|
+
}
|
|
24062
|
+
)
|
|
23958
24063
|
}
|
|
23959
24064
|
);
|
|
23960
24065
|
}
|
|
@@ -24095,7 +24200,16 @@ function FooterAnimatedSocial({
|
|
|
24095
24200
|
"flex flex-row md:flex-col flex-wrap items-center justify-center gap-4 md:gap-2",
|
|
24096
24201
|
rightColumnClassName
|
|
24097
24202
|
),
|
|
24098
|
-
children: /* @__PURE__ */ jsx(motion.div, { variants: itemVariants, children: /* @__PURE__ */ jsx(
|
|
24203
|
+
children: /* @__PURE__ */ jsx(motion.div, { variants: itemVariants, children: /* @__PURE__ */ jsx(
|
|
24204
|
+
"div",
|
|
24205
|
+
{
|
|
24206
|
+
className: cn(
|
|
24207
|
+
"flex flex-row md:flex-col items-center gap-4 md:gap-6",
|
|
24208
|
+
socialLinksClassName
|
|
24209
|
+
),
|
|
24210
|
+
children: socialLinksContent
|
|
24211
|
+
}
|
|
24212
|
+
) })
|
|
24099
24213
|
}
|
|
24100
24214
|
)
|
|
24101
24215
|
]
|
|
@@ -24483,6 +24597,7 @@ function FooterNavSocial({
|
|
|
24483
24597
|
gridClassName,
|
|
24484
24598
|
leftColumnClassName,
|
|
24485
24599
|
logoWrapperClassName,
|
|
24600
|
+
formConfig,
|
|
24486
24601
|
logoClassName,
|
|
24487
24602
|
navGridClassName,
|
|
24488
24603
|
navSectionClassName,
|
|
@@ -24503,7 +24618,8 @@ function FooterNavSocial({
|
|
|
24503
24618
|
legalLinksClassName,
|
|
24504
24619
|
legalLinkClassName,
|
|
24505
24620
|
background,
|
|
24506
|
-
|
|
24621
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
24622
|
+
spacing = "py-12 md:py-40",
|
|
24507
24623
|
pattern,
|
|
24508
24624
|
patternOpacity,
|
|
24509
24625
|
optixFlowConfig
|
|
@@ -24512,16 +24628,15 @@ function FooterNavSocial({
|
|
|
24512
24628
|
if (!sections || sections.length === 0) return null;
|
|
24513
24629
|
return sections.map((section, sectionIdx) => /* @__PURE__ */ jsxs("div", { className: cn(navSectionClassName), children: [
|
|
24514
24630
|
/* @__PURE__ */ jsx("h3", { className: cn("mb-4 font-semibold", navTitleClassName), children: section.title }),
|
|
24515
|
-
/* @__PURE__ */ jsx("ul", { className: cn("space-y-3 text-sm opacity-80", navLinksClassName), children: section.links.map((link, linkIdx) => /* @__PURE__ */ jsx("li", { className: cn(navLinkClassName), children: /* @__PURE__ */ jsx(
|
|
24516
|
-
Pressable,
|
|
24517
|
-
{
|
|
24518
|
-
href: link.href,
|
|
24519
|
-
className: "hover:opacity-100",
|
|
24520
|
-
children: link.name
|
|
24521
|
-
}
|
|
24522
|
-
) }, linkIdx)) })
|
|
24631
|
+
/* @__PURE__ */ jsx("ul", { className: cn("space-y-3 text-sm opacity-80", navLinksClassName), children: section.links.map((link, linkIdx) => /* @__PURE__ */ jsx("li", { className: cn(navLinkClassName), children: /* @__PURE__ */ jsx(Pressable, { href: link.href, className: "hover:opacity-100", children: link.name }) }, linkIdx)) })
|
|
24523
24632
|
] }, sectionIdx));
|
|
24524
|
-
}, [
|
|
24633
|
+
}, [
|
|
24634
|
+
sections,
|
|
24635
|
+
navSectionClassName,
|
|
24636
|
+
navTitleClassName,
|
|
24637
|
+
navLinksClassName,
|
|
24638
|
+
navLinkClassName
|
|
24639
|
+
]);
|
|
24525
24640
|
const socialLinksContent = useMemo(() => {
|
|
24526
24641
|
if (!socialLinks || socialLinks.length === 0) return null;
|
|
24527
24642
|
return socialLinks.map((social, idx) => /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
@@ -24530,7 +24645,10 @@ function FooterNavSocial({
|
|
|
24530
24645
|
href: social.href,
|
|
24531
24646
|
label: social.label,
|
|
24532
24647
|
iconNameOverride: social.iconNameOverride,
|
|
24533
|
-
className: cn(
|
|
24648
|
+
className: cn(
|
|
24649
|
+
"opacity-80 transition-colors hover:opacity-100",
|
|
24650
|
+
socialLinkClassName
|
|
24651
|
+
)
|
|
24534
24652
|
}
|
|
24535
24653
|
) }, idx));
|
|
24536
24654
|
}, [socialLinks, socialLinkClassName]);
|
|
@@ -24546,64 +24664,155 @@ function FooterNavSocial({
|
|
|
24546
24664
|
pattern,
|
|
24547
24665
|
patternOpacity,
|
|
24548
24666
|
className: cn(className),
|
|
24667
|
+
containerClassName,
|
|
24549
24668
|
children: /* @__PURE__ */ jsx("div", { className: cn(contentClassName), children: /* @__PURE__ */ jsxs("footer", { children: [
|
|
24550
|
-
/* @__PURE__ */ jsxs(
|
|
24551
|
-
|
|
24552
|
-
|
|
24553
|
-
|
|
24554
|
-
|
|
24555
|
-
|
|
24556
|
-
logoClassName: cn("mb-8", logoWrapperClassName),
|
|
24557
|
-
logoImageClassName: logoClassName,
|
|
24558
|
-
optixFlowConfig
|
|
24559
|
-
}
|
|
24669
|
+
/* @__PURE__ */ jsxs(
|
|
24670
|
+
"div",
|
|
24671
|
+
{
|
|
24672
|
+
className: cn(
|
|
24673
|
+
"grid gap-12 md:gap-24 lg:grid-cols-2",
|
|
24674
|
+
gridClassName
|
|
24560
24675
|
),
|
|
24561
|
-
|
|
24562
|
-
|
|
24563
|
-
|
|
24564
|
-
|
|
24565
|
-
newsletterHeading && /* @__PURE__ */ jsx("h3", { className: cn("mb-2 text-lg font-semibold", newsletterHeadingClassName), children: newsletterHeading }),
|
|
24566
|
-
newsletterDescription && /* @__PURE__ */ jsx("p", { className: cn("mb-4 text-sm opacity-80", newsletterDescriptionClassName), children: newsletterDescription }),
|
|
24567
|
-
/* @__PURE__ */ jsxs("div", { className: cn("flex max-w-md gap-2", newsletterFormClassName), children: [
|
|
24568
|
-
/* @__PURE__ */ jsx(
|
|
24569
|
-
"input",
|
|
24676
|
+
children: [
|
|
24677
|
+
/* @__PURE__ */ jsxs("div", { className: cn(leftColumnClassName), children: [
|
|
24678
|
+
logo && /* @__PURE__ */ jsx(
|
|
24679
|
+
FooterLogo,
|
|
24570
24680
|
{
|
|
24571
|
-
|
|
24572
|
-
|
|
24573
|
-
|
|
24681
|
+
logo,
|
|
24682
|
+
logoClassName: cn("mb-8", logoWrapperClassName),
|
|
24683
|
+
logoImageClassName: logoClassName,
|
|
24684
|
+
optixFlowConfig
|
|
24574
24685
|
}
|
|
24575
24686
|
),
|
|
24576
|
-
|
|
24577
|
-
"
|
|
24687
|
+
/* @__PURE__ */ jsx(
|
|
24688
|
+
"div",
|
|
24578
24689
|
{
|
|
24579
|
-
|
|
24580
|
-
|
|
24581
|
-
|
|
24690
|
+
className: cn(
|
|
24691
|
+
"grid md:flex w-full gap-8 md:gap-6 lg:gap-12 md:flex-wrap md:justify-between grid-cols-2",
|
|
24692
|
+
navGridClassName
|
|
24693
|
+
),
|
|
24694
|
+
children: sectionsContent
|
|
24582
24695
|
}
|
|
24583
24696
|
)
|
|
24584
|
-
] })
|
|
24585
|
-
|
|
24586
|
-
|
|
24587
|
-
|
|
24588
|
-
|
|
24589
|
-
|
|
24590
|
-
|
|
24591
|
-
|
|
24592
|
-
|
|
24593
|
-
|
|
24594
|
-
|
|
24595
|
-
|
|
24596
|
-
|
|
24597
|
-
|
|
24598
|
-
|
|
24599
|
-
|
|
24600
|
-
|
|
24601
|
-
|
|
24602
|
-
|
|
24603
|
-
|
|
24604
|
-
|
|
24605
|
-
|
|
24606
|
-
|
|
24697
|
+
] }),
|
|
24698
|
+
/* @__PURE__ */ jsxs(
|
|
24699
|
+
"div",
|
|
24700
|
+
{
|
|
24701
|
+
className: cn(
|
|
24702
|
+
"flex flex-col justify-between mt-0 md:mt-16 space-y-8 md:space-y-12",
|
|
24703
|
+
rightColumnClassName
|
|
24704
|
+
),
|
|
24705
|
+
children: [
|
|
24706
|
+
formConfig && /* @__PURE__ */ jsxs("div", { className: cn("", newsletterClassName), children: [
|
|
24707
|
+
newsletterHeading && /* @__PURE__ */ jsx(
|
|
24708
|
+
"h3",
|
|
24709
|
+
{
|
|
24710
|
+
className: cn(
|
|
24711
|
+
"mb-4 font-medium",
|
|
24712
|
+
newsletterHeadingClassName
|
|
24713
|
+
),
|
|
24714
|
+
children: newsletterHeading
|
|
24715
|
+
}
|
|
24716
|
+
),
|
|
24717
|
+
newsletterDescription && /* @__PURE__ */ jsx(
|
|
24718
|
+
"p",
|
|
24719
|
+
{
|
|
24720
|
+
className: cn(
|
|
24721
|
+
"mb-4 text-sm opacity-80",
|
|
24722
|
+
newsletterDescriptionClassName
|
|
24723
|
+
),
|
|
24724
|
+
children: newsletterDescription
|
|
24725
|
+
}
|
|
24726
|
+
),
|
|
24727
|
+
/* @__PURE__ */ jsxs(
|
|
24728
|
+
"div",
|
|
24729
|
+
{
|
|
24730
|
+
className: cn(
|
|
24731
|
+
"flex max-w-md gap-2",
|
|
24732
|
+
newsletterFormClassName
|
|
24733
|
+
),
|
|
24734
|
+
children: [
|
|
24735
|
+
/* @__PURE__ */ jsx(
|
|
24736
|
+
"input",
|
|
24737
|
+
{
|
|
24738
|
+
type: "email",
|
|
24739
|
+
placeholder: newsletterPlaceholder,
|
|
24740
|
+
className: "flex h-10 w-full rounded-md border border-input px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:opacity-50 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50"
|
|
24741
|
+
}
|
|
24742
|
+
),
|
|
24743
|
+
newsletterButtonText && /* @__PURE__ */ jsx(
|
|
24744
|
+
"button",
|
|
24745
|
+
{
|
|
24746
|
+
type: "submit",
|
|
24747
|
+
className: "inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 bg-primary text-primary-foreground hover:bg-primary/90 h-10 px-4 py-2",
|
|
24748
|
+
children: newsletterButtonText
|
|
24749
|
+
}
|
|
24750
|
+
)
|
|
24751
|
+
]
|
|
24752
|
+
}
|
|
24753
|
+
)
|
|
24754
|
+
] }),
|
|
24755
|
+
(socialTitle || socialLinksContent) && /* @__PURE__ */ jsxs("div", { className: cn(socialSectionClassName), children: [
|
|
24756
|
+
socialTitle && /* @__PURE__ */ jsx("p", { className: cn("mb-4 font-medium", socialTitleClassName), children: socialTitle }),
|
|
24757
|
+
/* @__PURE__ */ jsx(
|
|
24758
|
+
"ul",
|
|
24759
|
+
{
|
|
24760
|
+
className: cn(
|
|
24761
|
+
"flex items-center gap-4",
|
|
24762
|
+
socialLinksClassName
|
|
24763
|
+
),
|
|
24764
|
+
children: socialLinksContent
|
|
24765
|
+
}
|
|
24766
|
+
)
|
|
24767
|
+
] })
|
|
24768
|
+
]
|
|
24769
|
+
}
|
|
24770
|
+
)
|
|
24771
|
+
]
|
|
24772
|
+
}
|
|
24773
|
+
),
|
|
24774
|
+
/* @__PURE__ */ jsxs(
|
|
24775
|
+
"div",
|
|
24776
|
+
{
|
|
24777
|
+
className: cn(
|
|
24778
|
+
"mt-16 flex flex-col justify-between gap-4 border-t pt-8 text-sm opacity-80 md:flex-row md:items-center",
|
|
24779
|
+
bottomClassName
|
|
24780
|
+
),
|
|
24781
|
+
children: [
|
|
24782
|
+
/* @__PURE__ */ jsxs(
|
|
24783
|
+
"div",
|
|
24784
|
+
{
|
|
24785
|
+
className: cn(
|
|
24786
|
+
"flex flex-col gap-2 md:flex-row md:items-center md:gap-4",
|
|
24787
|
+
copyrightClassName
|
|
24788
|
+
),
|
|
24789
|
+
children: [
|
|
24790
|
+
/* @__PURE__ */ jsx(FooterCopyright, { copyright }),
|
|
24791
|
+
/* @__PURE__ */ jsx(
|
|
24792
|
+
BrandAttribution,
|
|
24793
|
+
{
|
|
24794
|
+
internalBrandSlug: "open_site_ai",
|
|
24795
|
+
optionIndex: 1,
|
|
24796
|
+
variant: "span",
|
|
24797
|
+
linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
|
|
24798
|
+
}
|
|
24799
|
+
)
|
|
24800
|
+
]
|
|
24801
|
+
}
|
|
24802
|
+
),
|
|
24803
|
+
legalLinksContent && /* @__PURE__ */ jsx(
|
|
24804
|
+
"ul",
|
|
24805
|
+
{
|
|
24806
|
+
className: cn(
|
|
24807
|
+
"pt-4 md:pt-0 gap-4 grid md:flex grid-cols-2 items-center w-full md:w-fit",
|
|
24808
|
+
legalLinksClassName
|
|
24809
|
+
),
|
|
24810
|
+
children: legalLinksContent
|
|
24811
|
+
}
|
|
24812
|
+
)
|
|
24813
|
+
]
|
|
24814
|
+
}
|
|
24815
|
+
)
|
|
24607
24816
|
] }) })
|
|
24608
24817
|
}
|
|
24609
24818
|
);
|
|
@@ -49942,11 +50151,11 @@ function HeroCenteredScreenshot({
|
|
|
49942
50151
|
imageSrc,
|
|
49943
50152
|
imageAlt = "placeholder",
|
|
49944
50153
|
background,
|
|
49945
|
-
|
|
50154
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
50155
|
+
spacing = "py-12 md:py-32",
|
|
49946
50156
|
pattern,
|
|
49947
50157
|
patternOpacity,
|
|
49948
50158
|
className,
|
|
49949
|
-
containerClassName,
|
|
49950
50159
|
contentClassName,
|
|
49951
50160
|
headingClassName,
|
|
49952
50161
|
descriptionClassName,
|
|
@@ -49958,7 +50167,14 @@ function HeroCenteredScreenshot({
|
|
|
49958
50167
|
if (actionsSlot) return actionsSlot;
|
|
49959
50168
|
if (!actions || actions.length === 0) return null;
|
|
49960
50169
|
return actions.map((action, index) => {
|
|
49961
|
-
const {
|
|
50170
|
+
const {
|
|
50171
|
+
label,
|
|
50172
|
+
icon,
|
|
50173
|
+
iconAfter,
|
|
50174
|
+
children,
|
|
50175
|
+
className: actionClassName,
|
|
50176
|
+
...pressableProps
|
|
50177
|
+
} = action;
|
|
49962
50178
|
return /* @__PURE__ */ jsx(
|
|
49963
50179
|
Pressable,
|
|
49964
50180
|
{
|
|
@@ -49983,22 +50199,50 @@ function HeroCenteredScreenshot({
|
|
|
49983
50199
|
pattern,
|
|
49984
50200
|
patternOpacity,
|
|
49985
50201
|
className: cn(className),
|
|
49986
|
-
|
|
49987
|
-
|
|
49988
|
-
|
|
49989
|
-
|
|
49990
|
-
|
|
49991
|
-
|
|
50202
|
+
containerClassName,
|
|
50203
|
+
children: /* @__PURE__ */ jsxs("div", { className: cn(""), children: [
|
|
50204
|
+
/* @__PURE__ */ jsx("div", { className: "flex flex-col", children: /* @__PURE__ */ jsxs(
|
|
50205
|
+
"div",
|
|
50206
|
+
{
|
|
50207
|
+
className: cn("z-10 items-center text-center", contentClassName),
|
|
50208
|
+
children: [
|
|
50209
|
+
heading && (typeof heading === "string" ? /* @__PURE__ */ jsx(
|
|
50210
|
+
"h1",
|
|
50211
|
+
{
|
|
50212
|
+
className: cn(
|
|
50213
|
+
"mb-8 text-4xl font-bold text-balance lg:text-7xl",
|
|
50214
|
+
headingClassName
|
|
50215
|
+
),
|
|
50216
|
+
children: heading
|
|
50217
|
+
}
|
|
50218
|
+
) : /* @__PURE__ */ jsx("div", { className: headingClassName, children: heading })),
|
|
50219
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsx(
|
|
50220
|
+
"p",
|
|
50221
|
+
{
|
|
50222
|
+
className: cn(
|
|
50223
|
+
"mx-auto max-w-3xl lg:text-xl text-balance opacity-80",
|
|
50224
|
+
descriptionClassName
|
|
50225
|
+
),
|
|
50226
|
+
children: description
|
|
50227
|
+
}
|
|
50228
|
+
) : /* @__PURE__ */ jsx("div", { className: descriptionClassName, children: description })),
|
|
50229
|
+
(actionsSlot || actions && actions.length > 0) && /* @__PURE__ */ jsx("div", { className: cn("lazy", actionsClassName), children: renderActions })
|
|
50230
|
+
]
|
|
50231
|
+
}
|
|
50232
|
+
) }),
|
|
49992
50233
|
imageSrc && /* @__PURE__ */ jsx(
|
|
49993
50234
|
Img,
|
|
49994
50235
|
{
|
|
49995
50236
|
src: imageSrc,
|
|
49996
50237
|
alt: imageAlt,
|
|
49997
|
-
className: cn(
|
|
50238
|
+
className: cn(
|
|
50239
|
+
"mx-auto mt-24 max-h-[700px] w-full max-w-7xl rounded-2xl object-cover shadow-lg",
|
|
50240
|
+
imageClassName
|
|
50241
|
+
),
|
|
49998
50242
|
optixFlowConfig
|
|
49999
50243
|
}
|
|
50000
50244
|
)
|
|
50001
|
-
] })
|
|
50245
|
+
] })
|
|
50002
50246
|
}
|
|
50003
50247
|
);
|
|
50004
50248
|
}
|