@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.cjs
CHANGED
|
@@ -3906,13 +3906,13 @@ function AboutLocationInfoHero({
|
|
|
3906
3906
|
imagesClassName,
|
|
3907
3907
|
contentPosition = "left",
|
|
3908
3908
|
mobileStackOrder = "content-first",
|
|
3909
|
-
accentColor = "hsl(var(--
|
|
3909
|
+
accentColor = "hsl(var(--muted))",
|
|
3910
3910
|
background,
|
|
3911
|
-
spacing,
|
|
3912
3911
|
pattern,
|
|
3913
3912
|
patternOpacity,
|
|
3914
3913
|
className,
|
|
3915
|
-
containerClassName,
|
|
3914
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
3915
|
+
spacing = "py-6 md:py-32",
|
|
3916
3916
|
optixFlowConfig
|
|
3917
3917
|
}) {
|
|
3918
3918
|
const isSingleImage = (images?.length ?? 0) <= 1;
|
|
@@ -3933,21 +3933,27 @@ function AboutLocationInfoHero({
|
|
|
3933
3933
|
const hoursSectionsContent = React52.useMemo(() => {
|
|
3934
3934
|
if (hoursSectionsSlot) return hoursSectionsSlot;
|
|
3935
3935
|
if (!hoursSections || hoursSections.length === 0) return null;
|
|
3936
|
-
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("space-y-
|
|
3936
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("space-y-6 md:space-y-12", hoursSectionsClassName), children: hoursSections.map((section, sectionIndex) => /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
3937
3937
|
section.label && (typeof section.label === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
3938
3938
|
"h3",
|
|
3939
3939
|
{
|
|
3940
|
-
className: "mb-
|
|
3940
|
+
className: "mb-4 text-lg font-semibold ",
|
|
3941
3941
|
style: { color: accentColor },
|
|
3942
3942
|
children: section.label
|
|
3943
3943
|
}
|
|
3944
3944
|
) : section.label),
|
|
3945
|
-
section.hours && section.hours.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-wrap gap-x-
|
|
3946
|
-
item.day && (typeof item.day === "string" ? /* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
3947
|
-
item.time && (typeof item.time === "string" ? /* @__PURE__ */ jsxRuntime.jsx("span", { children: item.time }) : item.time)
|
|
3945
|
+
section.hours && section.hours.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-wrap gap-x-4 gap-y-2", children: section.hours.map((item, itemIndex) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col", children: [
|
|
3946
|
+
item.day && (typeof item.day === "string" ? /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-white text-sm font-semibold uppercase opacity-60 tracking-wide", children: item.day }) : item.day),
|
|
3947
|
+
item.time && (typeof item.time === "string" ? /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-white text-sm font-semibold uppercase opacity-60", children: item.time }) : item.time)
|
|
3948
3948
|
] }, itemIndex)) })
|
|
3949
3949
|
] }, sectionIndex)) });
|
|
3950
|
-
}, [
|
|
3950
|
+
}, [
|
|
3951
|
+
hoursSectionsSlot,
|
|
3952
|
+
hoursSections,
|
|
3953
|
+
hoursSectionsClassName,
|
|
3954
|
+
accentColor,
|
|
3955
|
+
background
|
|
3956
|
+
]);
|
|
3951
3957
|
const imagesContent = React52.useMemo(() => {
|
|
3952
3958
|
if (imagesSlot) return imagesSlot;
|
|
3953
3959
|
if (!images || images.length === 0) return null;
|
|
@@ -3956,7 +3962,7 @@ function AboutLocationInfoHero({
|
|
|
3956
3962
|
"div",
|
|
3957
3963
|
{
|
|
3958
3964
|
className: cn(
|
|
3959
|
-
"relative aspect-
|
|
3965
|
+
"relative aspect-4/3 w-full max-w-lg overflow-hidden rounded-lg shadow-2xl",
|
|
3960
3966
|
imagesClassName
|
|
3961
3967
|
),
|
|
3962
3968
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -3979,7 +3985,7 @@ function AboutLocationInfoHero({
|
|
|
3979
3985
|
imagesClassName
|
|
3980
3986
|
),
|
|
3981
3987
|
children: [
|
|
3982
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute left-0 top-0 z-10 aspect-
|
|
3988
|
+
/* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.jsx(
|
|
3983
3989
|
img.Img,
|
|
3984
3990
|
{
|
|
3985
3991
|
src: images[0]?.src || imagePlaceholders[5],
|
|
@@ -3988,7 +3994,7 @@ function AboutLocationInfoHero({
|
|
|
3988
3994
|
optixFlowConfig
|
|
3989
3995
|
}
|
|
3990
3996
|
) }),
|
|
3991
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute bottom-0 right-0 z-20 aspect-
|
|
3997
|
+
/* @__PURE__ */ jsxRuntime.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__ */ jsxRuntime.jsx(
|
|
3992
3998
|
img.Img,
|
|
3993
3999
|
{
|
|
3994
4000
|
src: images[1]?.src || imagePlaceholders[6],
|
|
@@ -4008,11 +4014,9 @@ function AboutLocationInfoHero({
|
|
|
4008
4014
|
spacing,
|
|
4009
4015
|
pattern,
|
|
4010
4016
|
patternOpacity,
|
|
4011
|
-
className: cn(
|
|
4012
|
-
|
|
4013
|
-
|
|
4014
|
-
),
|
|
4015
|
-
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("container relative", containerClassName), children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4017
|
+
className: cn("relative w-full overflow-hidden", className),
|
|
4018
|
+
containerClassName,
|
|
4019
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn(" relative"), children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4016
4020
|
"div",
|
|
4017
4021
|
{
|
|
4018
4022
|
className: cn(
|
|
@@ -4033,16 +4037,16 @@ function AboutLocationInfoHero({
|
|
|
4033
4037
|
}
|
|
4034
4038
|
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: headlineClassName, children: headline })),
|
|
4035
4039
|
actionsContent,
|
|
4036
|
-
address || phone ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-
|
|
4040
|
+
address || phone ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
|
|
4037
4041
|
address ? /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4038
4042
|
"div",
|
|
4039
4043
|
{
|
|
4040
4044
|
className: cn(
|
|
4041
|
-
"flex items-center gap-3 text-
|
|
4045
|
+
"flex items-center gap-3 text-md",
|
|
4042
4046
|
addressClassName
|
|
4043
4047
|
),
|
|
4044
4048
|
children: [
|
|
4045
|
-
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/map-pin", size:
|
|
4049
|
+
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/map-pin", size: 18 }),
|
|
4046
4050
|
addressHref ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
4047
4051
|
Pressable,
|
|
4048
4052
|
{
|
|
@@ -4058,11 +4062,11 @@ function AboutLocationInfoHero({
|
|
|
4058
4062
|
"div",
|
|
4059
4063
|
{
|
|
4060
4064
|
className: cn(
|
|
4061
|
-
"flex items-center gap-3 text-
|
|
4065
|
+
"flex items-center gap-3 text-md",
|
|
4062
4066
|
phoneClassName
|
|
4063
4067
|
),
|
|
4064
4068
|
children: [
|
|
4065
|
-
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/phone", size:
|
|
4069
|
+
/* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/phone", size: 18 }),
|
|
4066
4070
|
phoneHref ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
4067
4071
|
Pressable,
|
|
4068
4072
|
{
|
|
@@ -21000,7 +21004,7 @@ var platformIconMap = {
|
|
|
21000
21004
|
yelp: "cib/yelp",
|
|
21001
21005
|
spotify: "cib/spotify",
|
|
21002
21006
|
apple: "cib/apple",
|
|
21003
|
-
x: "line-md/twitter-x",
|
|
21007
|
+
x: "line-md/twitter-x-alt",
|
|
21004
21008
|
github: "cib/github",
|
|
21005
21009
|
snapchat: "cib/snapchat",
|
|
21006
21010
|
discord: "cib/discord",
|
|
@@ -21019,6 +21023,8 @@ var platformIconMap = {
|
|
|
21019
21023
|
npmjs: "simple-icons/npm",
|
|
21020
21024
|
crates: "cib/rust",
|
|
21021
21025
|
rubygems: "cib/rubygems",
|
|
21026
|
+
behance: "cib/behance",
|
|
21027
|
+
dribbble: "cib/dribbble",
|
|
21022
21028
|
unknown: "icon-park-solid/circular-connection"
|
|
21023
21029
|
};
|
|
21024
21030
|
var SocialLinkIcon = React52__namespace.forwardRef(
|
|
@@ -22203,6 +22209,7 @@ var FooterLogo = ({
|
|
|
22203
22209
|
}
|
|
22204
22210
|
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("inline-flex items-center", logoClassName), children: logoContent });
|
|
22205
22211
|
};
|
|
22212
|
+
var footer_logo_default = FooterLogo;
|
|
22206
22213
|
function FooterCopyright({
|
|
22207
22214
|
copyright,
|
|
22208
22215
|
className
|
|
@@ -23091,8 +23098,8 @@ function FooterSimpleCentered({
|
|
|
23091
23098
|
bottomLinks,
|
|
23092
23099
|
className,
|
|
23093
23100
|
footerClassName,
|
|
23094
|
-
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
23095
23101
|
contentClassName,
|
|
23102
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
23096
23103
|
spacing = "py-12 md:py-32",
|
|
23097
23104
|
brandClassName,
|
|
23098
23105
|
logoWrapperClassName,
|
|
@@ -23886,6 +23893,8 @@ function FooterBackgroundCard({
|
|
|
23886
23893
|
menuItems,
|
|
23887
23894
|
copyright,
|
|
23888
23895
|
bottomLinks,
|
|
23896
|
+
logoWrapperClassName,
|
|
23897
|
+
logoClassName,
|
|
23889
23898
|
className,
|
|
23890
23899
|
cardClassName,
|
|
23891
23900
|
gridClassName,
|
|
@@ -23904,7 +23913,8 @@ function FooterBackgroundCard({
|
|
|
23904
23913
|
copyrightClassName,
|
|
23905
23914
|
bottomLinksClassName,
|
|
23906
23915
|
background,
|
|
23907
|
-
|
|
23916
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
23917
|
+
spacing = "py-6 md:py-32",
|
|
23908
23918
|
pattern,
|
|
23909
23919
|
patternOpacity,
|
|
23910
23920
|
optixFlowConfig
|
|
@@ -23922,79 +23932,174 @@ function FooterBackgroundCard({
|
|
|
23922
23932
|
patternOpacity,
|
|
23923
23933
|
className: cn("bg-cover bg-center bg-no-repeat", className),
|
|
23924
23934
|
style: sectionStyle,
|
|
23925
|
-
|
|
23926
|
-
|
|
23927
|
-
|
|
23928
|
-
|
|
23929
|
-
|
|
23930
|
-
|
|
23931
|
-
|
|
23932
|
-
|
|
23933
|
-
|
|
23934
|
-
|
|
23935
|
-
|
|
23936
|
-
}
|
|
23937
|
-
),
|
|
23938
|
-
tagline && /* @__PURE__ */ jsxRuntime.jsx("h3", { className: cn("text-2xl font-medium", taglineClassName), children: tagline })
|
|
23939
|
-
] }),
|
|
23940
|
-
personalMessage && /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("mb-6 text-sm leading-relaxed opacity-80", messageClassName), children: personalMessage }),
|
|
23941
|
-
ctaText && /* @__PURE__ */ jsxRuntime.jsx(
|
|
23942
|
-
Pressable,
|
|
23943
|
-
{
|
|
23944
|
-
href: ctaUrl || "#",
|
|
23945
|
-
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),
|
|
23946
|
-
children: ctaText
|
|
23947
|
-
}
|
|
23948
|
-
)
|
|
23949
|
-
] }),
|
|
23950
|
-
menuItems && menuItems.length > 0 && menuItems.map((menu, idx) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn(menuSectionClassName), children: [
|
|
23951
|
-
/* @__PURE__ */ jsxRuntime.jsx("h3", { className: cn("mb-4 text-sm font-medium tracking-wider uppercase", menuTitleClassName), children: menu.title }),
|
|
23952
|
-
/* @__PURE__ */ jsxRuntime.jsx("ul", { className: "space-y-3", children: menu.links.map((link, index) => /* @__PURE__ */ jsxRuntime.jsx("li", { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
23953
|
-
Pressable,
|
|
23935
|
+
containerClassName,
|
|
23936
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
23937
|
+
"div",
|
|
23938
|
+
{
|
|
23939
|
+
className: cn(
|
|
23940
|
+
"mx-auto max-w-7xl rounded-2xl p-12 shadow-xl md:p-16 bg-card text-card-foreground",
|
|
23941
|
+
cardClassName
|
|
23942
|
+
),
|
|
23943
|
+
children: [
|
|
23944
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
23945
|
+
"div",
|
|
23954
23946
|
{
|
|
23955
|
-
|
|
23956
|
-
|
|
23957
|
-
|
|
23947
|
+
className: cn(
|
|
23948
|
+
"grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-4 lg:gap-12",
|
|
23949
|
+
gridClassName
|
|
23950
|
+
),
|
|
23951
|
+
children: [
|
|
23952
|
+
(profileImage || tagline || personalMessage || ctaText || logo) && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("lg:col-span-1", profileSectionClassName), children: [
|
|
23953
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
23954
|
+
footer_logo_default,
|
|
23955
|
+
{
|
|
23956
|
+
logo,
|
|
23957
|
+
logoClassName: cn("mb-12", logoWrapperClassName),
|
|
23958
|
+
logoImageClassName: logoClassName,
|
|
23959
|
+
optixFlowConfig
|
|
23960
|
+
}
|
|
23961
|
+
),
|
|
23962
|
+
(profileImage || tagline) && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-4 flex items-center gap-4", children: [
|
|
23963
|
+
profileImage && /* @__PURE__ */ jsxRuntime.jsx(
|
|
23964
|
+
img.Img,
|
|
23965
|
+
{
|
|
23966
|
+
src: profileImage,
|
|
23967
|
+
alt: "Profile",
|
|
23968
|
+
className: cn(
|
|
23969
|
+
"h-16 w-16 rounded-full object-cover",
|
|
23970
|
+
profileImageClassName
|
|
23971
|
+
),
|
|
23972
|
+
optixFlowConfig
|
|
23973
|
+
}
|
|
23974
|
+
),
|
|
23975
|
+
tagline && /* @__PURE__ */ jsxRuntime.jsx(
|
|
23976
|
+
"h3",
|
|
23977
|
+
{
|
|
23978
|
+
className: cn("text-2xl font-medium", taglineClassName),
|
|
23979
|
+
children: tagline
|
|
23980
|
+
}
|
|
23981
|
+
)
|
|
23982
|
+
] }),
|
|
23983
|
+
personalMessage && /* @__PURE__ */ jsxRuntime.jsx(
|
|
23984
|
+
"p",
|
|
23985
|
+
{
|
|
23986
|
+
className: cn(
|
|
23987
|
+
"mb-6 text-sm leading-relaxed opacity-80",
|
|
23988
|
+
messageClassName
|
|
23989
|
+
),
|
|
23990
|
+
children: personalMessage
|
|
23991
|
+
}
|
|
23992
|
+
),
|
|
23993
|
+
ctaText && /* @__PURE__ */ jsxRuntime.jsx(
|
|
23994
|
+
Pressable,
|
|
23995
|
+
{
|
|
23996
|
+
href: ctaUrl || "#",
|
|
23997
|
+
className: cn(
|
|
23998
|
+
"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",
|
|
23999
|
+
ctaClassName
|
|
24000
|
+
),
|
|
24001
|
+
children: ctaText
|
|
24002
|
+
}
|
|
24003
|
+
)
|
|
24004
|
+
] }),
|
|
24005
|
+
menuItems && menuItems.length > 0 && menuItems.map((menu, idx) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
24006
|
+
"div",
|
|
24007
|
+
{
|
|
24008
|
+
className: cn("pl-0 md:pl-8", menuSectionClassName),
|
|
24009
|
+
children: [
|
|
24010
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
24011
|
+
"h3",
|
|
24012
|
+
{
|
|
24013
|
+
className: cn(
|
|
24014
|
+
"mb-4 text-sm font-medium tracking-wider uppercase",
|
|
24015
|
+
menuTitleClassName
|
|
24016
|
+
),
|
|
24017
|
+
children: menu.title
|
|
24018
|
+
}
|
|
24019
|
+
),
|
|
24020
|
+
/* @__PURE__ */ jsxRuntime.jsx("ul", { className: "space-y-3", children: menu.links.map((link, index) => /* @__PURE__ */ jsxRuntime.jsx("li", { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
24021
|
+
Pressable,
|
|
24022
|
+
{
|
|
24023
|
+
href: link.url,
|
|
24024
|
+
className: cn(
|
|
24025
|
+
"border-b border-transparent opacity-80 transition-all duration-300 ease-in-out hover:opacity-100",
|
|
24026
|
+
menuLinkClassName
|
|
24027
|
+
),
|
|
24028
|
+
children: link.text
|
|
24029
|
+
}
|
|
24030
|
+
) }, index)) })
|
|
24031
|
+
]
|
|
24032
|
+
},
|
|
24033
|
+
idx
|
|
24034
|
+
)),
|
|
24035
|
+
(contactTitle || contact) && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("pl-0 md:pl-8", contactSectionClassName), children: [
|
|
24036
|
+
contactTitle && /* @__PURE__ */ jsxRuntime.jsx(
|
|
24037
|
+
"h3",
|
|
24038
|
+
{
|
|
24039
|
+
className: cn(
|
|
24040
|
+
"mb-4 text-sm font-medium tracking-wider uppercase",
|
|
24041
|
+
contactTitleClassName
|
|
24042
|
+
),
|
|
24043
|
+
children: contactTitle
|
|
24044
|
+
}
|
|
24045
|
+
),
|
|
24046
|
+
contact && /* @__PURE__ */ jsxRuntime.jsxs("ul", { className: "space-y-3", children: [
|
|
24047
|
+
contact.phone && /* @__PURE__ */ jsxRuntime.jsx("li", { className: cn("opacity-80", contactItemClassName), children: contact.phone }),
|
|
24048
|
+
contact.email && /* @__PURE__ */ jsxRuntime.jsx("li", { className: cn("opacity-80", contactItemClassName), children: contact.email }),
|
|
24049
|
+
(contact.location || contact.timezone) && /* @__PURE__ */ jsxRuntime.jsxs("li", { className: cn("opacity-80", contactItemClassName), children: [
|
|
24050
|
+
contact.location,
|
|
24051
|
+
contact.location && contact.timezone && " \u2022 ",
|
|
24052
|
+
contact.timezone
|
|
24053
|
+
] })
|
|
24054
|
+
] })
|
|
24055
|
+
] })
|
|
24056
|
+
]
|
|
23958
24057
|
}
|
|
23959
|
-
)
|
|
23960
|
-
|
|
23961
|
-
|
|
23962
|
-
contactTitle && /* @__PURE__ */ jsxRuntime.jsx("h3", { className: cn("mb-4 text-sm font-medium tracking-wider uppercase", contactTitleClassName), children: contactTitle }),
|
|
23963
|
-
contact && /* @__PURE__ */ jsxRuntime.jsxs("ul", { className: "space-y-3", children: [
|
|
23964
|
-
contact.phone && /* @__PURE__ */ jsxRuntime.jsx("li", { className: cn("opacity-80", contactItemClassName), children: contact.phone }),
|
|
23965
|
-
contact.email && /* @__PURE__ */ jsxRuntime.jsx("li", { className: cn("opacity-80", contactItemClassName), children: contact.email }),
|
|
23966
|
-
(contact.location || contact.timezone) && /* @__PURE__ */ jsxRuntime.jsxs("li", { className: cn("opacity-80", contactItemClassName), children: [
|
|
23967
|
-
contact.location,
|
|
23968
|
-
contact.location && contact.timezone && " \u2022 ",
|
|
23969
|
-
contact.timezone
|
|
23970
|
-
] })
|
|
23971
|
-
] })
|
|
23972
|
-
] })
|
|
23973
|
-
] }),
|
|
23974
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mt-12 flex flex-col items-center justify-between gap-4 border-t pt-8 md:flex-row", bottomClassName), children: [
|
|
23975
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("flex flex-col gap-2 text-sm opacity-80 md:flex-row md:items-center md:gap-4", copyrightClassName), children: [
|
|
23976
|
-
/* @__PURE__ */ jsxRuntime.jsx(FooterCopyright, { copyright }),
|
|
23977
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
23978
|
-
BrandAttribution,
|
|
24058
|
+
),
|
|
24059
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
24060
|
+
"div",
|
|
23979
24061
|
{
|
|
23980
|
-
|
|
23981
|
-
|
|
23982
|
-
|
|
23983
|
-
|
|
24062
|
+
className: cn(
|
|
24063
|
+
"mt-12 flex flex-col items-center justify-between gap-4 border-t pt-8 md:flex-row",
|
|
24064
|
+
bottomClassName
|
|
24065
|
+
),
|
|
24066
|
+
children: [
|
|
24067
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
24068
|
+
"div",
|
|
24069
|
+
{
|
|
24070
|
+
className: cn(
|
|
24071
|
+
"flex flex-col gap-2 text-sm opacity-80 md:flex-row md:items-center md:gap-4",
|
|
24072
|
+
copyrightClassName
|
|
24073
|
+
),
|
|
24074
|
+
children: [
|
|
24075
|
+
/* @__PURE__ */ jsxRuntime.jsx(FooterCopyright, { copyright }),
|
|
24076
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
24077
|
+
BrandAttribution,
|
|
24078
|
+
{
|
|
24079
|
+
internalBrandSlug: "open_site_ai",
|
|
24080
|
+
optionIndex: 3,
|
|
24081
|
+
variant: "span",
|
|
24082
|
+
linkClassName: "hover:opacity-100"
|
|
24083
|
+
}
|
|
24084
|
+
)
|
|
24085
|
+
]
|
|
24086
|
+
}
|
|
24087
|
+
),
|
|
24088
|
+
bottomLinks && bottomLinks.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("flex gap-4", bottomLinksClassName), children: bottomLinks.map((link, idx) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
24089
|
+
Pressable,
|
|
24090
|
+
{
|
|
24091
|
+
href: link.url,
|
|
24092
|
+
className: "text-sm opacity-80 transition-colors hover:opacity-100",
|
|
24093
|
+
children: link.text
|
|
24094
|
+
},
|
|
24095
|
+
idx
|
|
24096
|
+
)) })
|
|
24097
|
+
]
|
|
23984
24098
|
}
|
|
23985
24099
|
)
|
|
23986
|
-
]
|
|
23987
|
-
|
|
23988
|
-
|
|
23989
|
-
{
|
|
23990
|
-
href: link.url,
|
|
23991
|
-
className: "text-sm opacity-80 transition-colors hover:opacity-100",
|
|
23992
|
-
children: link.text
|
|
23993
|
-
},
|
|
23994
|
-
idx
|
|
23995
|
-
)) })
|
|
23996
|
-
] })
|
|
23997
|
-
] })
|
|
24100
|
+
]
|
|
24101
|
+
}
|
|
24102
|
+
)
|
|
23998
24103
|
}
|
|
23999
24104
|
);
|
|
24000
24105
|
}
|
|
@@ -24135,7 +24240,16 @@ function FooterAnimatedSocial({
|
|
|
24135
24240
|
"flex flex-row md:flex-col flex-wrap items-center justify-center gap-4 md:gap-2",
|
|
24136
24241
|
rightColumnClassName
|
|
24137
24242
|
),
|
|
24138
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(framerMotion.motion.div, { variants: itemVariants, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
24243
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(framerMotion.motion.div, { variants: itemVariants, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
24244
|
+
"div",
|
|
24245
|
+
{
|
|
24246
|
+
className: cn(
|
|
24247
|
+
"flex flex-row md:flex-col items-center gap-4 md:gap-6",
|
|
24248
|
+
socialLinksClassName
|
|
24249
|
+
),
|
|
24250
|
+
children: socialLinksContent
|
|
24251
|
+
}
|
|
24252
|
+
) })
|
|
24139
24253
|
}
|
|
24140
24254
|
)
|
|
24141
24255
|
]
|
|
@@ -24523,6 +24637,7 @@ function FooterNavSocial({
|
|
|
24523
24637
|
gridClassName,
|
|
24524
24638
|
leftColumnClassName,
|
|
24525
24639
|
logoWrapperClassName,
|
|
24640
|
+
formConfig,
|
|
24526
24641
|
logoClassName,
|
|
24527
24642
|
navGridClassName,
|
|
24528
24643
|
navSectionClassName,
|
|
@@ -24543,7 +24658,8 @@ function FooterNavSocial({
|
|
|
24543
24658
|
legalLinksClassName,
|
|
24544
24659
|
legalLinkClassName,
|
|
24545
24660
|
background,
|
|
24546
|
-
|
|
24661
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
24662
|
+
spacing = "py-12 md:py-40",
|
|
24547
24663
|
pattern,
|
|
24548
24664
|
patternOpacity,
|
|
24549
24665
|
optixFlowConfig
|
|
@@ -24552,16 +24668,15 @@ function FooterNavSocial({
|
|
|
24552
24668
|
if (!sections || sections.length === 0) return null;
|
|
24553
24669
|
return sections.map((section, sectionIdx) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn(navSectionClassName), children: [
|
|
24554
24670
|
/* @__PURE__ */ jsxRuntime.jsx("h3", { className: cn("mb-4 font-semibold", navTitleClassName), children: section.title }),
|
|
24555
|
-
/* @__PURE__ */ jsxRuntime.jsx("ul", { className: cn("space-y-3 text-sm opacity-80", navLinksClassName), children: section.links.map((link, linkIdx) => /* @__PURE__ */ jsxRuntime.jsx("li", { className: cn(navLinkClassName), children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
24556
|
-
Pressable,
|
|
24557
|
-
{
|
|
24558
|
-
href: link.href,
|
|
24559
|
-
className: "hover:opacity-100",
|
|
24560
|
-
children: link.name
|
|
24561
|
-
}
|
|
24562
|
-
) }, linkIdx)) })
|
|
24671
|
+
/* @__PURE__ */ jsxRuntime.jsx("ul", { className: cn("space-y-3 text-sm opacity-80", navLinksClassName), children: section.links.map((link, linkIdx) => /* @__PURE__ */ jsxRuntime.jsx("li", { className: cn(navLinkClassName), children: /* @__PURE__ */ jsxRuntime.jsx(Pressable, { href: link.href, className: "hover:opacity-100", children: link.name }) }, linkIdx)) })
|
|
24563
24672
|
] }, sectionIdx));
|
|
24564
|
-
}, [
|
|
24673
|
+
}, [
|
|
24674
|
+
sections,
|
|
24675
|
+
navSectionClassName,
|
|
24676
|
+
navTitleClassName,
|
|
24677
|
+
navLinksClassName,
|
|
24678
|
+
navLinkClassName
|
|
24679
|
+
]);
|
|
24565
24680
|
const socialLinksContent = React52.useMemo(() => {
|
|
24566
24681
|
if (!socialLinks || socialLinks.length === 0) return null;
|
|
24567
24682
|
return socialLinks.map((social, idx) => /* @__PURE__ */ jsxRuntime.jsx("li", { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -24570,7 +24685,10 @@ function FooterNavSocial({
|
|
|
24570
24685
|
href: social.href,
|
|
24571
24686
|
label: social.label,
|
|
24572
24687
|
iconNameOverride: social.iconNameOverride,
|
|
24573
|
-
className: cn(
|
|
24688
|
+
className: cn(
|
|
24689
|
+
"opacity-80 transition-colors hover:opacity-100",
|
|
24690
|
+
socialLinkClassName
|
|
24691
|
+
)
|
|
24574
24692
|
}
|
|
24575
24693
|
) }, idx));
|
|
24576
24694
|
}, [socialLinks, socialLinkClassName]);
|
|
@@ -24586,64 +24704,155 @@ function FooterNavSocial({
|
|
|
24586
24704
|
pattern,
|
|
24587
24705
|
patternOpacity,
|
|
24588
24706
|
className: cn(className),
|
|
24707
|
+
containerClassName,
|
|
24589
24708
|
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn(contentClassName), children: /* @__PURE__ */ jsxRuntime.jsxs("footer", { children: [
|
|
24590
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
24591
|
-
|
|
24592
|
-
|
|
24593
|
-
|
|
24594
|
-
|
|
24595
|
-
|
|
24596
|
-
logoClassName: cn("mb-8", logoWrapperClassName),
|
|
24597
|
-
logoImageClassName: logoClassName,
|
|
24598
|
-
optixFlowConfig
|
|
24599
|
-
}
|
|
24709
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
24710
|
+
"div",
|
|
24711
|
+
{
|
|
24712
|
+
className: cn(
|
|
24713
|
+
"grid gap-12 md:gap-24 lg:grid-cols-2",
|
|
24714
|
+
gridClassName
|
|
24600
24715
|
),
|
|
24601
|
-
|
|
24602
|
-
|
|
24603
|
-
|
|
24604
|
-
|
|
24605
|
-
newsletterHeading && /* @__PURE__ */ jsxRuntime.jsx("h3", { className: cn("mb-2 text-lg font-semibold", newsletterHeadingClassName), children: newsletterHeading }),
|
|
24606
|
-
newsletterDescription && /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("mb-4 text-sm opacity-80", newsletterDescriptionClassName), children: newsletterDescription }),
|
|
24607
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("flex max-w-md gap-2", newsletterFormClassName), children: [
|
|
24608
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
24609
|
-
"input",
|
|
24716
|
+
children: [
|
|
24717
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn(leftColumnClassName), children: [
|
|
24718
|
+
logo && /* @__PURE__ */ jsxRuntime.jsx(
|
|
24719
|
+
FooterLogo,
|
|
24610
24720
|
{
|
|
24611
|
-
|
|
24612
|
-
|
|
24613
|
-
|
|
24721
|
+
logo,
|
|
24722
|
+
logoClassName: cn("mb-8", logoWrapperClassName),
|
|
24723
|
+
logoImageClassName: logoClassName,
|
|
24724
|
+
optixFlowConfig
|
|
24614
24725
|
}
|
|
24615
24726
|
),
|
|
24616
|
-
|
|
24617
|
-
"
|
|
24727
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
24728
|
+
"div",
|
|
24618
24729
|
{
|
|
24619
|
-
|
|
24620
|
-
|
|
24621
|
-
|
|
24730
|
+
className: cn(
|
|
24731
|
+
"grid md:flex w-full gap-8 md:gap-6 lg:gap-12 md:flex-wrap md:justify-between grid-cols-2",
|
|
24732
|
+
navGridClassName
|
|
24733
|
+
),
|
|
24734
|
+
children: sectionsContent
|
|
24622
24735
|
}
|
|
24623
24736
|
)
|
|
24624
|
-
] })
|
|
24625
|
-
|
|
24626
|
-
|
|
24627
|
-
|
|
24628
|
-
|
|
24629
|
-
|
|
24630
|
-
|
|
24631
|
-
|
|
24632
|
-
|
|
24633
|
-
|
|
24634
|
-
|
|
24635
|
-
|
|
24636
|
-
|
|
24637
|
-
|
|
24638
|
-
|
|
24639
|
-
|
|
24640
|
-
|
|
24641
|
-
|
|
24642
|
-
|
|
24643
|
-
|
|
24644
|
-
|
|
24645
|
-
|
|
24646
|
-
|
|
24737
|
+
] }),
|
|
24738
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
24739
|
+
"div",
|
|
24740
|
+
{
|
|
24741
|
+
className: cn(
|
|
24742
|
+
"flex flex-col justify-between mt-0 md:mt-16 space-y-8 md:space-y-12",
|
|
24743
|
+
rightColumnClassName
|
|
24744
|
+
),
|
|
24745
|
+
children: [
|
|
24746
|
+
formConfig && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("", newsletterClassName), children: [
|
|
24747
|
+
newsletterHeading && /* @__PURE__ */ jsxRuntime.jsx(
|
|
24748
|
+
"h3",
|
|
24749
|
+
{
|
|
24750
|
+
className: cn(
|
|
24751
|
+
"mb-4 font-medium",
|
|
24752
|
+
newsletterHeadingClassName
|
|
24753
|
+
),
|
|
24754
|
+
children: newsletterHeading
|
|
24755
|
+
}
|
|
24756
|
+
),
|
|
24757
|
+
newsletterDescription && /* @__PURE__ */ jsxRuntime.jsx(
|
|
24758
|
+
"p",
|
|
24759
|
+
{
|
|
24760
|
+
className: cn(
|
|
24761
|
+
"mb-4 text-sm opacity-80",
|
|
24762
|
+
newsletterDescriptionClassName
|
|
24763
|
+
),
|
|
24764
|
+
children: newsletterDescription
|
|
24765
|
+
}
|
|
24766
|
+
),
|
|
24767
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
24768
|
+
"div",
|
|
24769
|
+
{
|
|
24770
|
+
className: cn(
|
|
24771
|
+
"flex max-w-md gap-2",
|
|
24772
|
+
newsletterFormClassName
|
|
24773
|
+
),
|
|
24774
|
+
children: [
|
|
24775
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
24776
|
+
"input",
|
|
24777
|
+
{
|
|
24778
|
+
type: "email",
|
|
24779
|
+
placeholder: newsletterPlaceholder,
|
|
24780
|
+
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"
|
|
24781
|
+
}
|
|
24782
|
+
),
|
|
24783
|
+
newsletterButtonText && /* @__PURE__ */ jsxRuntime.jsx(
|
|
24784
|
+
"button",
|
|
24785
|
+
{
|
|
24786
|
+
type: "submit",
|
|
24787
|
+
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",
|
|
24788
|
+
children: newsletterButtonText
|
|
24789
|
+
}
|
|
24790
|
+
)
|
|
24791
|
+
]
|
|
24792
|
+
}
|
|
24793
|
+
)
|
|
24794
|
+
] }),
|
|
24795
|
+
(socialTitle || socialLinksContent) && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn(socialSectionClassName), children: [
|
|
24796
|
+
socialTitle && /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("mb-4 font-medium", socialTitleClassName), children: socialTitle }),
|
|
24797
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
24798
|
+
"ul",
|
|
24799
|
+
{
|
|
24800
|
+
className: cn(
|
|
24801
|
+
"flex items-center gap-4",
|
|
24802
|
+
socialLinksClassName
|
|
24803
|
+
),
|
|
24804
|
+
children: socialLinksContent
|
|
24805
|
+
}
|
|
24806
|
+
)
|
|
24807
|
+
] })
|
|
24808
|
+
]
|
|
24809
|
+
}
|
|
24810
|
+
)
|
|
24811
|
+
]
|
|
24812
|
+
}
|
|
24813
|
+
),
|
|
24814
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
24815
|
+
"div",
|
|
24816
|
+
{
|
|
24817
|
+
className: cn(
|
|
24818
|
+
"mt-16 flex flex-col justify-between gap-4 border-t pt-8 text-sm opacity-80 md:flex-row md:items-center",
|
|
24819
|
+
bottomClassName
|
|
24820
|
+
),
|
|
24821
|
+
children: [
|
|
24822
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
24823
|
+
"div",
|
|
24824
|
+
{
|
|
24825
|
+
className: cn(
|
|
24826
|
+
"flex flex-col gap-2 md:flex-row md:items-center md:gap-4",
|
|
24827
|
+
copyrightClassName
|
|
24828
|
+
),
|
|
24829
|
+
children: [
|
|
24830
|
+
/* @__PURE__ */ jsxRuntime.jsx(FooterCopyright, { copyright }),
|
|
24831
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
24832
|
+
BrandAttribution,
|
|
24833
|
+
{
|
|
24834
|
+
internalBrandSlug: "open_site_ai",
|
|
24835
|
+
optionIndex: 1,
|
|
24836
|
+
variant: "span",
|
|
24837
|
+
linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
|
|
24838
|
+
}
|
|
24839
|
+
)
|
|
24840
|
+
]
|
|
24841
|
+
}
|
|
24842
|
+
),
|
|
24843
|
+
legalLinksContent && /* @__PURE__ */ jsxRuntime.jsx(
|
|
24844
|
+
"ul",
|
|
24845
|
+
{
|
|
24846
|
+
className: cn(
|
|
24847
|
+
"pt-4 md:pt-0 gap-4 grid md:flex grid-cols-2 items-center w-full md:w-fit",
|
|
24848
|
+
legalLinksClassName
|
|
24849
|
+
),
|
|
24850
|
+
children: legalLinksContent
|
|
24851
|
+
}
|
|
24852
|
+
)
|
|
24853
|
+
]
|
|
24854
|
+
}
|
|
24855
|
+
)
|
|
24647
24856
|
] }) })
|
|
24648
24857
|
}
|
|
24649
24858
|
);
|
|
@@ -49982,11 +50191,11 @@ function HeroCenteredScreenshot({
|
|
|
49982
50191
|
imageSrc,
|
|
49983
50192
|
imageAlt = "placeholder",
|
|
49984
50193
|
background,
|
|
49985
|
-
|
|
50194
|
+
containerClassName = "px-6 sm:px-6 md:px-8 lg:px-8",
|
|
50195
|
+
spacing = "py-12 md:py-32",
|
|
49986
50196
|
pattern,
|
|
49987
50197
|
patternOpacity,
|
|
49988
50198
|
className,
|
|
49989
|
-
containerClassName,
|
|
49990
50199
|
contentClassName,
|
|
49991
50200
|
headingClassName,
|
|
49992
50201
|
descriptionClassName,
|
|
@@ -49998,7 +50207,14 @@ function HeroCenteredScreenshot({
|
|
|
49998
50207
|
if (actionsSlot) return actionsSlot;
|
|
49999
50208
|
if (!actions || actions.length === 0) return null;
|
|
50000
50209
|
return actions.map((action, index) => {
|
|
50001
|
-
const {
|
|
50210
|
+
const {
|
|
50211
|
+
label,
|
|
50212
|
+
icon,
|
|
50213
|
+
iconAfter,
|
|
50214
|
+
children,
|
|
50215
|
+
className: actionClassName,
|
|
50216
|
+
...pressableProps
|
|
50217
|
+
} = action;
|
|
50002
50218
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
50003
50219
|
Pressable,
|
|
50004
50220
|
{
|
|
@@ -50023,22 +50239,50 @@ function HeroCenteredScreenshot({
|
|
|
50023
50239
|
pattern,
|
|
50024
50240
|
patternOpacity,
|
|
50025
50241
|
className: cn(className),
|
|
50026
|
-
|
|
50027
|
-
|
|
50028
|
-
|
|
50029
|
-
|
|
50030
|
-
|
|
50031
|
-
|
|
50242
|
+
containerClassName,
|
|
50243
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn(""), children: [
|
|
50244
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col", children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
50245
|
+
"div",
|
|
50246
|
+
{
|
|
50247
|
+
className: cn("z-10 items-center text-center", contentClassName),
|
|
50248
|
+
children: [
|
|
50249
|
+
heading && (typeof heading === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
50250
|
+
"h1",
|
|
50251
|
+
{
|
|
50252
|
+
className: cn(
|
|
50253
|
+
"mb-8 text-4xl font-bold text-balance lg:text-7xl",
|
|
50254
|
+
headingClassName
|
|
50255
|
+
),
|
|
50256
|
+
children: heading
|
|
50257
|
+
}
|
|
50258
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: headingClassName, children: heading })),
|
|
50259
|
+
description && (typeof description === "string" ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
50260
|
+
"p",
|
|
50261
|
+
{
|
|
50262
|
+
className: cn(
|
|
50263
|
+
"mx-auto max-w-3xl lg:text-xl text-balance opacity-80",
|
|
50264
|
+
descriptionClassName
|
|
50265
|
+
),
|
|
50266
|
+
children: description
|
|
50267
|
+
}
|
|
50268
|
+
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: descriptionClassName, children: description })),
|
|
50269
|
+
(actionsSlot || actions && actions.length > 0) && /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("lazy", actionsClassName), children: renderActions })
|
|
50270
|
+
]
|
|
50271
|
+
}
|
|
50272
|
+
) }),
|
|
50032
50273
|
imageSrc && /* @__PURE__ */ jsxRuntime.jsx(
|
|
50033
50274
|
img.Img,
|
|
50034
50275
|
{
|
|
50035
50276
|
src: imageSrc,
|
|
50036
50277
|
alt: imageAlt,
|
|
50037
|
-
className: cn(
|
|
50278
|
+
className: cn(
|
|
50279
|
+
"mx-auto mt-24 max-h-[700px] w-full max-w-7xl rounded-2xl object-cover shadow-lg",
|
|
50280
|
+
imageClassName
|
|
50281
|
+
),
|
|
50038
50282
|
optixFlowConfig
|
|
50039
50283
|
}
|
|
50040
50284
|
)
|
|
50041
|
-
] })
|
|
50285
|
+
] })
|
|
50042
50286
|
}
|
|
50043
50287
|
);
|
|
50044
50288
|
}
|