@opensite/ui 1.4.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components.cjs +90 -90
- package/dist/components.js +90 -90
- package/dist/feature-bento-image-grid.cjs +219 -114
- package/dist/feature-bento-image-grid.js +219 -114
- package/dist/feature-icon-grid-bordered.cjs +1 -1
- package/dist/feature-icon-grid-bordered.js +1 -1
- package/dist/footer-accordion-social.cjs +6 -6
- package/dist/footer-accordion-social.js +6 -6
- package/dist/footer-animated-social.cjs +7 -7
- package/dist/footer-animated-social.js +7 -7
- package/dist/footer-background-card.cjs +13 -13
- package/dist/footer-background-card.js +13 -13
- package/dist/footer-brand-description.cjs +12 -10
- package/dist/footer-brand-description.d.cts +5 -1
- package/dist/footer-brand-description.d.ts +5 -1
- package/dist/footer-brand-description.js +12 -10
- package/dist/footer-brand-links-contact.cjs +9 -9
- package/dist/footer-brand-links-contact.js +9 -9
- package/dist/footer-comprehensive-links.cjs +1 -1
- package/dist/footer-comprehensive-links.js +1 -1
- package/dist/footer-contact-card.cjs +7 -39
- package/dist/footer-contact-card.js +7 -39
- package/dist/footer-cta-banner.cjs +10 -10
- package/dist/footer-cta-banner.js +10 -10
- package/dist/footer-cta-social.cjs +7 -7
- package/dist/footer-cta-social.js +7 -7
- package/dist/footer-info-cards-accordion.cjs +9 -9
- package/dist/footer-info-cards-accordion.js +9 -9
- package/dist/footer-links-grid.cjs +1 -1
- package/dist/footer-links-grid.js +1 -1
- package/dist/footer-nav-social.cjs +8 -8
- package/dist/footer-nav-social.js +8 -8
- package/dist/footer-newsletter-contact.cjs +5 -5
- package/dist/footer-newsletter-contact.js +5 -5
- package/dist/footer-newsletter-grid.cjs +9 -9
- package/dist/footer-newsletter-grid.js +9 -9
- package/dist/footer-newsletter-minimal.cjs +6 -6
- package/dist/footer-newsletter-minimal.js +6 -6
- package/dist/footer-simple-centered.cjs +6 -6
- package/dist/footer-simple-centered.js +6 -6
- package/dist/footer-social-apps.cjs +2 -2
- package/dist/footer-social-apps.js +2 -2
- package/dist/footer-social-newsletter.cjs +2 -2
- package/dist/footer-social-newsletter.js +2 -2
- package/dist/footer-split-image-accordion.cjs +6 -6
- package/dist/footer-split-image-accordion.js +6 -6
- package/dist/index.cjs +90 -90
- package/dist/index.js +90 -90
- package/dist/registry.cjs +346 -215
- package/dist/registry.js +346 -215
- package/package.json +1 -1
|
@@ -1657,11 +1657,11 @@ function FooterNavSocial({
|
|
|
1657
1657
|
if (!sections || sections.length === 0) return null;
|
|
1658
1658
|
return sections.map((section, sectionIdx) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn(navSectionClassName), children: [
|
|
1659
1659
|
/* @__PURE__ */ jsxRuntime.jsx("h3", { className: cn("mb-4 font-semibold", navTitleClassName), children: section.title }),
|
|
1660
|
-
/* @__PURE__ */ jsxRuntime.jsx("ul", { className: cn("space-y-3 text-sm
|
|
1660
|
+
/* @__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(
|
|
1661
1661
|
Pressable,
|
|
1662
1662
|
{
|
|
1663
1663
|
href: link.href,
|
|
1664
|
-
className: "hover:
|
|
1664
|
+
className: "hover:opacity-100",
|
|
1665
1665
|
children: link.name
|
|
1666
1666
|
}
|
|
1667
1667
|
) }, linkIdx)) })
|
|
@@ -1675,13 +1675,13 @@ function FooterNavSocial({
|
|
|
1675
1675
|
href: social.href,
|
|
1676
1676
|
label: social.label,
|
|
1677
1677
|
iconNameOverride: social.iconNameOverride,
|
|
1678
|
-
className: cn("
|
|
1678
|
+
className: cn("opacity-80 transition-colors hover:opacity-100", socialLinkClassName)
|
|
1679
1679
|
}
|
|
1680
1680
|
) }, idx));
|
|
1681
1681
|
}, [socialLinks, socialLinkClassName]);
|
|
1682
1682
|
const legalLinksContent = React.useMemo(() => {
|
|
1683
1683
|
if (!legalLinks || legalLinks.length === 0) return null;
|
|
1684
|
-
return legalLinks.map((link, idx) => /* @__PURE__ */ jsxRuntime.jsx("li", { className: cn(legalLinkClassName), children: /* @__PURE__ */ jsxRuntime.jsx(Pressable, { href: link.href, className: "hover:
|
|
1684
|
+
return legalLinks.map((link, idx) => /* @__PURE__ */ jsxRuntime.jsx("li", { className: cn(legalLinkClassName), children: /* @__PURE__ */ jsxRuntime.jsx(Pressable, { href: link.href, className: "hover:opacity-100", children: link.name }) }, idx));
|
|
1685
1685
|
}, [legalLinks, legalLinkClassName]);
|
|
1686
1686
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
1687
1687
|
Section,
|
|
@@ -1708,14 +1708,14 @@ function FooterNavSocial({
|
|
|
1708
1708
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("flex flex-col justify-between", rightColumnClassName), children: [
|
|
1709
1709
|
(newsletterHeading || newsletterDescription) && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mb-8", newsletterClassName), children: [
|
|
1710
1710
|
newsletterHeading && /* @__PURE__ */ jsxRuntime.jsx("h3", { className: cn("mb-2 text-lg font-semibold", newsletterHeadingClassName), children: newsletterHeading }),
|
|
1711
|
-
newsletterDescription && /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("mb-4 text-sm
|
|
1711
|
+
newsletterDescription && /* @__PURE__ */ jsxRuntime.jsx("p", { className: cn("mb-4 text-sm opacity-80", newsletterDescriptionClassName), children: newsletterDescription }),
|
|
1712
1712
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("flex max-w-md gap-2", newsletterFormClassName), children: [
|
|
1713
1713
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1714
1714
|
"input",
|
|
1715
1715
|
{
|
|
1716
1716
|
type: "email",
|
|
1717
1717
|
placeholder: newsletterPlaceholder,
|
|
1718
|
-
className: "flex h-10 w-full rounded-md border border-input
|
|
1718
|
+
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"
|
|
1719
1719
|
}
|
|
1720
1720
|
),
|
|
1721
1721
|
newsletterButtonText && /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -1734,7 +1734,7 @@ function FooterNavSocial({
|
|
|
1734
1734
|
] })
|
|
1735
1735
|
] })
|
|
1736
1736
|
] }),
|
|
1737
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mt-16 flex flex-col justify-between gap-4 border-t pt-8 text-sm
|
|
1737
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mt-16 flex flex-col justify-between gap-4 border-t pt-8 text-sm opacity-80 md:flex-row md:items-center", bottomClassName), children: [
|
|
1738
1738
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("flex flex-col gap-2 md:flex-row md:items-center md:gap-4", copyrightClassName), children: [
|
|
1739
1739
|
/* @__PURE__ */ jsxRuntime.jsx(FooterCopyright, { copyright }),
|
|
1740
1740
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -1743,7 +1743,7 @@ function FooterNavSocial({
|
|
|
1743
1743
|
internalBrandSlug: "open_site_ai",
|
|
1744
1744
|
optionIndex: 1,
|
|
1745
1745
|
variant: "span",
|
|
1746
|
-
linkClassName: "underline underline-offset-4 transition-colors hover:
|
|
1746
|
+
linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
|
|
1747
1747
|
}
|
|
1748
1748
|
)
|
|
1749
1749
|
] }),
|
|
@@ -1636,11 +1636,11 @@ function FooterNavSocial({
|
|
|
1636
1636
|
if (!sections || sections.length === 0) return null;
|
|
1637
1637
|
return sections.map((section, sectionIdx) => /* @__PURE__ */ jsxs("div", { className: cn(navSectionClassName), children: [
|
|
1638
1638
|
/* @__PURE__ */ jsx("h3", { className: cn("mb-4 font-semibold", navTitleClassName), children: section.title }),
|
|
1639
|
-
/* @__PURE__ */ jsx("ul", { className: cn("space-y-3 text-sm
|
|
1639
|
+
/* @__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(
|
|
1640
1640
|
Pressable,
|
|
1641
1641
|
{
|
|
1642
1642
|
href: link.href,
|
|
1643
|
-
className: "hover:
|
|
1643
|
+
className: "hover:opacity-100",
|
|
1644
1644
|
children: link.name
|
|
1645
1645
|
}
|
|
1646
1646
|
) }, linkIdx)) })
|
|
@@ -1654,13 +1654,13 @@ function FooterNavSocial({
|
|
|
1654
1654
|
href: social.href,
|
|
1655
1655
|
label: social.label,
|
|
1656
1656
|
iconNameOverride: social.iconNameOverride,
|
|
1657
|
-
className: cn("
|
|
1657
|
+
className: cn("opacity-80 transition-colors hover:opacity-100", socialLinkClassName)
|
|
1658
1658
|
}
|
|
1659
1659
|
) }, idx));
|
|
1660
1660
|
}, [socialLinks, socialLinkClassName]);
|
|
1661
1661
|
const legalLinksContent = useMemo(() => {
|
|
1662
1662
|
if (!legalLinks || legalLinks.length === 0) return null;
|
|
1663
|
-
return legalLinks.map((link, idx) => /* @__PURE__ */ jsx("li", { className: cn(legalLinkClassName), children: /* @__PURE__ */ jsx(Pressable, { href: link.href, className: "hover:
|
|
1663
|
+
return legalLinks.map((link, idx) => /* @__PURE__ */ jsx("li", { className: cn(legalLinkClassName), children: /* @__PURE__ */ jsx(Pressable, { href: link.href, className: "hover:opacity-100", children: link.name }) }, idx));
|
|
1664
1664
|
}, [legalLinks, legalLinkClassName]);
|
|
1665
1665
|
return /* @__PURE__ */ jsx(
|
|
1666
1666
|
Section,
|
|
@@ -1687,14 +1687,14 @@ function FooterNavSocial({
|
|
|
1687
1687
|
/* @__PURE__ */ jsxs("div", { className: cn("flex flex-col justify-between", rightColumnClassName), children: [
|
|
1688
1688
|
(newsletterHeading || newsletterDescription) && /* @__PURE__ */ jsxs("div", { className: cn("mb-8", newsletterClassName), children: [
|
|
1689
1689
|
newsletterHeading && /* @__PURE__ */ jsx("h3", { className: cn("mb-2 text-lg font-semibold", newsletterHeadingClassName), children: newsletterHeading }),
|
|
1690
|
-
newsletterDescription && /* @__PURE__ */ jsx("p", { className: cn("mb-4 text-sm
|
|
1690
|
+
newsletterDescription && /* @__PURE__ */ jsx("p", { className: cn("mb-4 text-sm opacity-80", newsletterDescriptionClassName), children: newsletterDescription }),
|
|
1691
1691
|
/* @__PURE__ */ jsxs("div", { className: cn("flex max-w-md gap-2", newsletterFormClassName), children: [
|
|
1692
1692
|
/* @__PURE__ */ jsx(
|
|
1693
1693
|
"input",
|
|
1694
1694
|
{
|
|
1695
1695
|
type: "email",
|
|
1696
1696
|
placeholder: newsletterPlaceholder,
|
|
1697
|
-
className: "flex h-10 w-full rounded-md border border-input
|
|
1697
|
+
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"
|
|
1698
1698
|
}
|
|
1699
1699
|
),
|
|
1700
1700
|
newsletterButtonText && /* @__PURE__ */ jsx(
|
|
@@ -1713,7 +1713,7 @@ function FooterNavSocial({
|
|
|
1713
1713
|
] })
|
|
1714
1714
|
] })
|
|
1715
1715
|
] }),
|
|
1716
|
-
/* @__PURE__ */ jsxs("div", { className: cn("mt-16 flex flex-col justify-between gap-4 border-t pt-8 text-sm
|
|
1716
|
+
/* @__PURE__ */ jsxs("div", { className: cn("mt-16 flex flex-col justify-between gap-4 border-t pt-8 text-sm opacity-80 md:flex-row md:items-center", bottomClassName), children: [
|
|
1717
1717
|
/* @__PURE__ */ jsxs("div", { className: cn("flex flex-col gap-2 md:flex-row md:items-center md:gap-4", copyrightClassName), children: [
|
|
1718
1718
|
/* @__PURE__ */ jsx(FooterCopyright, { copyright }),
|
|
1719
1719
|
/* @__PURE__ */ jsx(
|
|
@@ -1722,7 +1722,7 @@ function FooterNavSocial({
|
|
|
1722
1722
|
internalBrandSlug: "open_site_ai",
|
|
1723
1723
|
optionIndex: 1,
|
|
1724
1724
|
variant: "span",
|
|
1725
|
-
linkClassName: "underline underline-offset-4 transition-colors hover:
|
|
1725
|
+
linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
|
|
1726
1726
|
}
|
|
1727
1727
|
)
|
|
1728
1728
|
] }),
|
|
@@ -1781,7 +1781,7 @@ function FooterNewsletterContact({
|
|
|
1781
1781
|
const linkSectionsContent = React.useMemo(() => {
|
|
1782
1782
|
if (!footerLinks || footerLinks.length === 0) return null;
|
|
1783
1783
|
return footerLinks.map((section, idx) => /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
1784
|
-
/* @__PURE__ */ jsxRuntime.jsx("h2", { className: "mb-6 text-sm font-medium uppercase leading-tight
|
|
1784
|
+
/* @__PURE__ */ jsxRuntime.jsx("h2", { className: "mb-6 text-sm font-medium uppercase leading-tight opacity-70", children: section.title }),
|
|
1785
1785
|
/* @__PURE__ */ jsxRuntime.jsx("ul", { className: "space-y-3", children: section.items.map((item, itemIdx) => /* @__PURE__ */ jsxRuntime.jsx("li", { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1786
1786
|
Pressable,
|
|
1787
1787
|
{
|
|
@@ -1888,7 +1888,7 @@ function FooterNewsletterContact({
|
|
|
1888
1888
|
type: "email",
|
|
1889
1889
|
placeholder: newsletterPlaceholder,
|
|
1890
1890
|
error: meta.touched && !!meta.error,
|
|
1891
|
-
className: "flex h-10 w-full rounded-md border border-input
|
|
1891
|
+
className: "flex h-10 w-full rounded-md border border-input px-3 py-2 text-sm ring-offset-background placeholder:opacity-50 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",
|
|
1892
1892
|
"aria-label": newsletterPlaceholder || "Email address"
|
|
1893
1893
|
}
|
|
1894
1894
|
) }),
|
|
@@ -1910,7 +1910,7 @@ function FooterNewsletterContact({
|
|
|
1910
1910
|
] }),
|
|
1911
1911
|
linkSectionsContent,
|
|
1912
1912
|
(contactDetailsContent || socialLinksContent) && /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
1913
|
-
/* @__PURE__ */ jsxRuntime.jsx("h2", { className: "mb-6 text-sm font-medium uppercase leading-tight
|
|
1913
|
+
/* @__PURE__ */ jsxRuntime.jsx("h2", { className: "mb-6 text-sm font-medium uppercase leading-tight opacity-70", children: "Contact" }),
|
|
1914
1914
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-6", children: [
|
|
1915
1915
|
contactDetailsContent && /* @__PURE__ */ jsxRuntime.jsx("ul", { className: "space-y-3", children: contactDetailsContent }),
|
|
1916
1916
|
socialLinksContent && /* @__PURE__ */ jsxRuntime.jsx("ul", { className: "flex flex-wrap gap-3", children: socialLinksContent })
|
|
@@ -1928,7 +1928,7 @@ function FooterNewsletterContact({
|
|
|
1928
1928
|
) }),
|
|
1929
1929
|
/* @__PURE__ */ jsxRuntime.jsx(Separator, { className: "flex-1" })
|
|
1930
1930
|
] }) }),
|
|
1931
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-wrap items-center justify-center gap-3
|
|
1931
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-wrap items-center justify-center gap-3 opacity-80 max-md:text-xs", children: [
|
|
1932
1932
|
/* @__PURE__ */ jsxRuntime.jsx(FooterCopyright, { copyright }),
|
|
1933
1933
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1934
1934
|
BrandAttribution,
|
|
@@ -1936,7 +1936,7 @@ function FooterNewsletterContact({
|
|
|
1936
1936
|
internalBrandSlug: "open_site_ai",
|
|
1937
1937
|
optionIndex: 2,
|
|
1938
1938
|
variant: "span",
|
|
1939
|
-
linkClassName: "underline underline-offset-4 transition-colors hover:
|
|
1939
|
+
linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
|
|
1940
1940
|
}
|
|
1941
1941
|
),
|
|
1942
1942
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -1759,7 +1759,7 @@ function FooterNewsletterContact({
|
|
|
1759
1759
|
const linkSectionsContent = useMemo(() => {
|
|
1760
1760
|
if (!footerLinks || footerLinks.length === 0) return null;
|
|
1761
1761
|
return footerLinks.map((section, idx) => /* @__PURE__ */ jsxs("div", { children: [
|
|
1762
|
-
/* @__PURE__ */ jsx("h2", { className: "mb-6 text-sm font-medium uppercase leading-tight
|
|
1762
|
+
/* @__PURE__ */ jsx("h2", { className: "mb-6 text-sm font-medium uppercase leading-tight opacity-70", children: section.title }),
|
|
1763
1763
|
/* @__PURE__ */ jsx("ul", { className: "space-y-3", children: section.items.map((item, itemIdx) => /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
1764
1764
|
Pressable,
|
|
1765
1765
|
{
|
|
@@ -1866,7 +1866,7 @@ function FooterNewsletterContact({
|
|
|
1866
1866
|
type: "email",
|
|
1867
1867
|
placeholder: newsletterPlaceholder,
|
|
1868
1868
|
error: meta.touched && !!meta.error,
|
|
1869
|
-
className: "flex h-10 w-full rounded-md border border-input
|
|
1869
|
+
className: "flex h-10 w-full rounded-md border border-input px-3 py-2 text-sm ring-offset-background placeholder:opacity-50 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",
|
|
1870
1870
|
"aria-label": newsletterPlaceholder || "Email address"
|
|
1871
1871
|
}
|
|
1872
1872
|
) }),
|
|
@@ -1888,7 +1888,7 @@ function FooterNewsletterContact({
|
|
|
1888
1888
|
] }),
|
|
1889
1889
|
linkSectionsContent,
|
|
1890
1890
|
(contactDetailsContent || socialLinksContent) && /* @__PURE__ */ jsxs("div", { children: [
|
|
1891
|
-
/* @__PURE__ */ jsx("h2", { className: "mb-6 text-sm font-medium uppercase leading-tight
|
|
1891
|
+
/* @__PURE__ */ jsx("h2", { className: "mb-6 text-sm font-medium uppercase leading-tight opacity-70", children: "Contact" }),
|
|
1892
1892
|
/* @__PURE__ */ jsxs("div", { className: "space-y-6", children: [
|
|
1893
1893
|
contactDetailsContent && /* @__PURE__ */ jsx("ul", { className: "space-y-3", children: contactDetailsContent }),
|
|
1894
1894
|
socialLinksContent && /* @__PURE__ */ jsx("ul", { className: "flex flex-wrap gap-3", children: socialLinksContent })
|
|
@@ -1906,7 +1906,7 @@ function FooterNewsletterContact({
|
|
|
1906
1906
|
) }),
|
|
1907
1907
|
/* @__PURE__ */ jsx(Separator, { className: "flex-1" })
|
|
1908
1908
|
] }) }),
|
|
1909
|
-
/* @__PURE__ */ jsxs("div", { className: "flex flex-wrap items-center justify-center gap-3
|
|
1909
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-wrap items-center justify-center gap-3 opacity-80 max-md:text-xs", children: [
|
|
1910
1910
|
/* @__PURE__ */ jsx(FooterCopyright, { copyright }),
|
|
1911
1911
|
/* @__PURE__ */ jsx(
|
|
1912
1912
|
BrandAttribution,
|
|
@@ -1914,7 +1914,7 @@ function FooterNewsletterContact({
|
|
|
1914
1914
|
internalBrandSlug: "open_site_ai",
|
|
1915
1915
|
optionIndex: 2,
|
|
1916
1916
|
variant: "span",
|
|
1917
|
-
linkClassName: "underline underline-offset-4 transition-colors hover:
|
|
1917
|
+
linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
|
|
1918
1918
|
}
|
|
1919
1919
|
),
|
|
1920
1920
|
/* @__PURE__ */ jsx(
|
|
@@ -1635,10 +1635,10 @@ function FooterNewsletterGrid({
|
|
|
1635
1635
|
if (!sections || sections.length === 0) return null;
|
|
1636
1636
|
return sections.map((section, sectionIdx) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "col-span-2 md:col-span-1", children: [
|
|
1637
1637
|
/* @__PURE__ */ jsxRuntime.jsx("h3", { className: "mb-5 font-medium", children: section.title }),
|
|
1638
|
-
/* @__PURE__ */ jsxRuntime.jsx("ul", { className: "space-y-4 text-sm
|
|
1638
|
+
/* @__PURE__ */ jsxRuntime.jsx("ul", { className: "space-y-4 text-sm opacity-80", children: section.links.map((link, linkIdx) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1639
1639
|
"li",
|
|
1640
1640
|
{
|
|
1641
|
-
className: "font-medium hover:
|
|
1641
|
+
className: "font-medium hover:opacity-100",
|
|
1642
1642
|
children: /* @__PURE__ */ jsxRuntime.jsx(Pressable, { href: link.href, children: link.name })
|
|
1643
1643
|
},
|
|
1644
1644
|
linkIdx
|
|
@@ -1654,7 +1654,7 @@ function FooterNewsletterGrid({
|
|
|
1654
1654
|
label: social.label,
|
|
1655
1655
|
iconNameOverride: social.iconNameOverride,
|
|
1656
1656
|
iconSize: 24,
|
|
1657
|
-
className: "font-medium duration-200 hover:scale-110 hover:
|
|
1657
|
+
className: "font-medium duration-200 hover:scale-110 hover:opacity-70"
|
|
1658
1658
|
}
|
|
1659
1659
|
) }, idx));
|
|
1660
1660
|
}, [socialLinks]);
|
|
@@ -1677,7 +1677,7 @@ function FooterNewsletterGrid({
|
|
|
1677
1677
|
optixFlowConfig
|
|
1678
1678
|
}
|
|
1679
1679
|
) }),
|
|
1680
|
-
description && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "
|
|
1680
|
+
description && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "opacity-80", children: description }),
|
|
1681
1681
|
socialLinks && socialLinks.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("ul", { className: "flex items-center space-x-6", children: socialLinksContent })
|
|
1682
1682
|
] }),
|
|
1683
1683
|
sectionsContent,
|
|
@@ -1689,7 +1689,7 @@ function FooterNewsletterGrid({
|
|
|
1689
1689
|
{
|
|
1690
1690
|
type: "email",
|
|
1691
1691
|
placeholder: newsletterPlaceholder,
|
|
1692
|
-
className: "flex h-10 w-full rounded-md border border-input
|
|
1692
|
+
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"
|
|
1693
1693
|
}
|
|
1694
1694
|
),
|
|
1695
1695
|
newsletterButtonText && /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -1701,20 +1701,20 @@ function FooterNewsletterGrid({
|
|
|
1701
1701
|
}
|
|
1702
1702
|
)
|
|
1703
1703
|
] }) }),
|
|
1704
|
-
(privacyText || privacyLinkText) && /* @__PURE__ */ jsxRuntime.jsxs("p", { className: "mt-1 text-xs font-medium
|
|
1704
|
+
(privacyText || privacyLinkText) && /* @__PURE__ */ jsxRuntime.jsxs("p", { className: "mt-1 text-xs font-medium opacity-80", children: [
|
|
1705
1705
|
privacyText,
|
|
1706
1706
|
privacyLinkText && privacyLinkUrl && /* @__PURE__ */ jsxRuntime.jsx(
|
|
1707
1707
|
Pressable,
|
|
1708
1708
|
{
|
|
1709
1709
|
href: privacyLinkUrl,
|
|
1710
|
-
className: "ml-1
|
|
1710
|
+
className: "ml-1 hover:underline hover:opacity-100",
|
|
1711
1711
|
children: privacyLinkText
|
|
1712
1712
|
}
|
|
1713
1713
|
)
|
|
1714
1714
|
] })
|
|
1715
1715
|
] })
|
|
1716
1716
|
] }),
|
|
1717
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-20 flex flex-col justify-between gap-4 border-t pt-8 text-sm font-medium
|
|
1717
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-20 flex flex-col justify-between gap-4 border-t pt-8 text-sm font-medium opacity-80 lg:flex-row lg:items-center lg:text-left", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-wrap items-center gap-4", children: [
|
|
1718
1718
|
/* @__PURE__ */ jsxRuntime.jsx(FooterCopyright, { copyright }),
|
|
1719
1719
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1720
1720
|
BrandAttribution,
|
|
@@ -1722,7 +1722,7 @@ function FooterNewsletterGrid({
|
|
|
1722
1722
|
internalBrandSlug: "open_site_ai",
|
|
1723
1723
|
optionIndex: 3,
|
|
1724
1724
|
variant: "span",
|
|
1725
|
-
linkClassName: "underline underline-offset-4 transition-colors hover:
|
|
1725
|
+
linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
|
|
1726
1726
|
}
|
|
1727
1727
|
)
|
|
1728
1728
|
] }) })
|
|
@@ -1614,10 +1614,10 @@ function FooterNewsletterGrid({
|
|
|
1614
1614
|
if (!sections || sections.length === 0) return null;
|
|
1615
1615
|
return sections.map((section, sectionIdx) => /* @__PURE__ */ jsxs("div", { className: "col-span-2 md:col-span-1", children: [
|
|
1616
1616
|
/* @__PURE__ */ jsx("h3", { className: "mb-5 font-medium", children: section.title }),
|
|
1617
|
-
/* @__PURE__ */ jsx("ul", { className: "space-y-4 text-sm
|
|
1617
|
+
/* @__PURE__ */ jsx("ul", { className: "space-y-4 text-sm opacity-80", children: section.links.map((link, linkIdx) => /* @__PURE__ */ jsx(
|
|
1618
1618
|
"li",
|
|
1619
1619
|
{
|
|
1620
|
-
className: "font-medium hover:
|
|
1620
|
+
className: "font-medium hover:opacity-100",
|
|
1621
1621
|
children: /* @__PURE__ */ jsx(Pressable, { href: link.href, children: link.name })
|
|
1622
1622
|
},
|
|
1623
1623
|
linkIdx
|
|
@@ -1633,7 +1633,7 @@ function FooterNewsletterGrid({
|
|
|
1633
1633
|
label: social.label,
|
|
1634
1634
|
iconNameOverride: social.iconNameOverride,
|
|
1635
1635
|
iconSize: 24,
|
|
1636
|
-
className: "font-medium duration-200 hover:scale-110 hover:
|
|
1636
|
+
className: "font-medium duration-200 hover:scale-110 hover:opacity-70"
|
|
1637
1637
|
}
|
|
1638
1638
|
) }, idx));
|
|
1639
1639
|
}, [socialLinks]);
|
|
@@ -1656,7 +1656,7 @@ function FooterNewsletterGrid({
|
|
|
1656
1656
|
optixFlowConfig
|
|
1657
1657
|
}
|
|
1658
1658
|
) }),
|
|
1659
|
-
description && /* @__PURE__ */ jsx("p", { className: "
|
|
1659
|
+
description && /* @__PURE__ */ jsx("p", { className: "opacity-80", children: description }),
|
|
1660
1660
|
socialLinks && socialLinks.length > 0 && /* @__PURE__ */ jsx("ul", { className: "flex items-center space-x-6", children: socialLinksContent })
|
|
1661
1661
|
] }),
|
|
1662
1662
|
sectionsContent,
|
|
@@ -1668,7 +1668,7 @@ function FooterNewsletterGrid({
|
|
|
1668
1668
|
{
|
|
1669
1669
|
type: "email",
|
|
1670
1670
|
placeholder: newsletterPlaceholder,
|
|
1671
|
-
className: "flex h-10 w-full rounded-md border border-input
|
|
1671
|
+
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"
|
|
1672
1672
|
}
|
|
1673
1673
|
),
|
|
1674
1674
|
newsletterButtonText && /* @__PURE__ */ jsx(
|
|
@@ -1680,20 +1680,20 @@ function FooterNewsletterGrid({
|
|
|
1680
1680
|
}
|
|
1681
1681
|
)
|
|
1682
1682
|
] }) }),
|
|
1683
|
-
(privacyText || privacyLinkText) && /* @__PURE__ */ jsxs("p", { className: "mt-1 text-xs font-medium
|
|
1683
|
+
(privacyText || privacyLinkText) && /* @__PURE__ */ jsxs("p", { className: "mt-1 text-xs font-medium opacity-80", children: [
|
|
1684
1684
|
privacyText,
|
|
1685
1685
|
privacyLinkText && privacyLinkUrl && /* @__PURE__ */ jsx(
|
|
1686
1686
|
Pressable,
|
|
1687
1687
|
{
|
|
1688
1688
|
href: privacyLinkUrl,
|
|
1689
|
-
className: "ml-1
|
|
1689
|
+
className: "ml-1 hover:underline hover:opacity-100",
|
|
1690
1690
|
children: privacyLinkText
|
|
1691
1691
|
}
|
|
1692
1692
|
)
|
|
1693
1693
|
] })
|
|
1694
1694
|
] })
|
|
1695
1695
|
] }),
|
|
1696
|
-
/* @__PURE__ */ jsx("div", { className: "mt-20 flex flex-col justify-between gap-4 border-t pt-8 text-sm font-medium
|
|
1696
|
+
/* @__PURE__ */ jsx("div", { className: "mt-20 flex flex-col justify-between gap-4 border-t pt-8 text-sm font-medium opacity-80 lg:flex-row lg:items-center lg:text-left", children: /* @__PURE__ */ jsxs("div", { className: "flex flex-wrap items-center gap-4", children: [
|
|
1697
1697
|
/* @__PURE__ */ jsx(FooterCopyright, { copyright }),
|
|
1698
1698
|
/* @__PURE__ */ jsx(
|
|
1699
1699
|
BrandAttribution,
|
|
@@ -1701,7 +1701,7 @@ function FooterNewsletterGrid({
|
|
|
1701
1701
|
internalBrandSlug: "open_site_ai",
|
|
1702
1702
|
optionIndex: 3,
|
|
1703
1703
|
variant: "span",
|
|
1704
|
-
linkClassName: "underline underline-offset-4 transition-colors hover:
|
|
1704
|
+
linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
|
|
1705
1705
|
}
|
|
1706
1706
|
)
|
|
1707
1707
|
] }) })
|
|
@@ -1712,7 +1712,7 @@ function FooterNewsletterMinimal({
|
|
|
1712
1712
|
Pressable,
|
|
1713
1713
|
{
|
|
1714
1714
|
href: item.href,
|
|
1715
|
-
className: cn("tracking-tight hover:
|
|
1715
|
+
className: cn("tracking-tight hover:opacity-70", navLinkClassName),
|
|
1716
1716
|
children: item.label
|
|
1717
1717
|
}
|
|
1718
1718
|
) }, idx));
|
|
@@ -1726,7 +1726,7 @@ function FooterNewsletterMinimal({
|
|
|
1726
1726
|
label: item.label,
|
|
1727
1727
|
iconNameOverride: item.iconNameOverride,
|
|
1728
1728
|
iconSize: 14,
|
|
1729
|
-
className: cn("group flex items-center gap-1 tracking-tight hover:
|
|
1729
|
+
className: cn("group flex items-center gap-1 tracking-tight hover:opacity-70", socialLinkClassName)
|
|
1730
1730
|
}
|
|
1731
1731
|
) }, idx));
|
|
1732
1732
|
}, [socialLinks, socialLinkClassName]);
|
|
@@ -1736,7 +1736,7 @@ function FooterNewsletterMinimal({
|
|
|
1736
1736
|
Pressable,
|
|
1737
1737
|
{
|
|
1738
1738
|
href: item.href,
|
|
1739
|
-
className: cn("group flex items-center gap-1 tracking-tight hover:
|
|
1739
|
+
className: cn("group flex items-center gap-1 tracking-tight hover:opacity-70", footerLinkClassName),
|
|
1740
1740
|
children: item.label
|
|
1741
1741
|
}
|
|
1742
1742
|
) }, item.label));
|
|
@@ -1830,7 +1830,7 @@ function FooterNewsletterMinimal({
|
|
|
1830
1830
|
{
|
|
1831
1831
|
componentType: "button",
|
|
1832
1832
|
type: "submit",
|
|
1833
|
-
className: cn("p-2 hover:
|
|
1833
|
+
className: cn("p-2 hover:opacity-80", newsletterButtonClassName),
|
|
1834
1834
|
asButton: false,
|
|
1835
1835
|
disabled: form.isSubmitting,
|
|
1836
1836
|
children: /* @__PURE__ */ jsxRuntime.jsx(DynamicIcon, { name: "lucide/arrow-right", size: 20 })
|
|
@@ -1856,7 +1856,7 @@ function FooterNewsletterMinimal({
|
|
|
1856
1856
|
children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: cn("text-6xl font-bold tracking-tighter md:text-8xl lg:text-9xl", brandTextClassName), children: brandText })
|
|
1857
1857
|
}
|
|
1858
1858
|
) }),
|
|
1859
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mt-8 text-center text-sm
|
|
1859
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("mt-8 text-center text-sm opacity-80", copyrightClassName), children: [
|
|
1860
1860
|
/* @__PURE__ */ jsxRuntime.jsx(FooterCopyright, { copyright }),
|
|
1861
1861
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1862
1862
|
BrandAttribution,
|
|
@@ -1865,7 +1865,7 @@ function FooterNewsletterMinimal({
|
|
|
1865
1865
|
optionIndex: 4,
|
|
1866
1866
|
variant: "div",
|
|
1867
1867
|
containerClassName: "mt-2",
|
|
1868
|
-
linkClassName: "underline underline-offset-4 transition-colors hover:
|
|
1868
|
+
linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
|
|
1869
1869
|
}
|
|
1870
1870
|
)
|
|
1871
1871
|
] })
|
|
@@ -1691,7 +1691,7 @@ function FooterNewsletterMinimal({
|
|
|
1691
1691
|
Pressable,
|
|
1692
1692
|
{
|
|
1693
1693
|
href: item.href,
|
|
1694
|
-
className: cn("tracking-tight hover:
|
|
1694
|
+
className: cn("tracking-tight hover:opacity-70", navLinkClassName),
|
|
1695
1695
|
children: item.label
|
|
1696
1696
|
}
|
|
1697
1697
|
) }, idx));
|
|
@@ -1705,7 +1705,7 @@ function FooterNewsletterMinimal({
|
|
|
1705
1705
|
label: item.label,
|
|
1706
1706
|
iconNameOverride: item.iconNameOverride,
|
|
1707
1707
|
iconSize: 14,
|
|
1708
|
-
className: cn("group flex items-center gap-1 tracking-tight hover:
|
|
1708
|
+
className: cn("group flex items-center gap-1 tracking-tight hover:opacity-70", socialLinkClassName)
|
|
1709
1709
|
}
|
|
1710
1710
|
) }, idx));
|
|
1711
1711
|
}, [socialLinks, socialLinkClassName]);
|
|
@@ -1715,7 +1715,7 @@ function FooterNewsletterMinimal({
|
|
|
1715
1715
|
Pressable,
|
|
1716
1716
|
{
|
|
1717
1717
|
href: item.href,
|
|
1718
|
-
className: cn("group flex items-center gap-1 tracking-tight hover:
|
|
1718
|
+
className: cn("group flex items-center gap-1 tracking-tight hover:opacity-70", footerLinkClassName),
|
|
1719
1719
|
children: item.label
|
|
1720
1720
|
}
|
|
1721
1721
|
) }, item.label));
|
|
@@ -1809,7 +1809,7 @@ function FooterNewsletterMinimal({
|
|
|
1809
1809
|
{
|
|
1810
1810
|
componentType: "button",
|
|
1811
1811
|
type: "submit",
|
|
1812
|
-
className: cn("p-2 hover:
|
|
1812
|
+
className: cn("p-2 hover:opacity-80", newsletterButtonClassName),
|
|
1813
1813
|
asButton: false,
|
|
1814
1814
|
disabled: form.isSubmitting,
|
|
1815
1815
|
children: /* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/arrow-right", size: 20 })
|
|
@@ -1835,7 +1835,7 @@ function FooterNewsletterMinimal({
|
|
|
1835
1835
|
children: /* @__PURE__ */ jsx("span", { className: cn("text-6xl font-bold tracking-tighter md:text-8xl lg:text-9xl", brandTextClassName), children: brandText })
|
|
1836
1836
|
}
|
|
1837
1837
|
) }),
|
|
1838
|
-
/* @__PURE__ */ jsxs("div", { className: cn("mt-8 text-center text-sm
|
|
1838
|
+
/* @__PURE__ */ jsxs("div", { className: cn("mt-8 text-center text-sm opacity-80", copyrightClassName), children: [
|
|
1839
1839
|
/* @__PURE__ */ jsx(FooterCopyright, { copyright }),
|
|
1840
1840
|
/* @__PURE__ */ jsx(
|
|
1841
1841
|
BrandAttribution,
|
|
@@ -1844,7 +1844,7 @@ function FooterNewsletterMinimal({
|
|
|
1844
1844
|
optionIndex: 4,
|
|
1845
1845
|
variant: "div",
|
|
1846
1846
|
containerClassName: "mt-2",
|
|
1847
|
-
linkClassName: "underline underline-offset-4 transition-colors hover:
|
|
1847
|
+
linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
|
|
1848
1848
|
}
|
|
1849
1849
|
)
|
|
1850
1850
|
] })
|
|
@@ -1466,7 +1466,7 @@ function FooterSimpleCentered({
|
|
|
1466
1466
|
{
|
|
1467
1467
|
href: link.href,
|
|
1468
1468
|
className: cn(
|
|
1469
|
-
"text-sm
|
|
1469
|
+
"text-sm opacity-80 transition-colors hover:opacity-100",
|
|
1470
1470
|
sitemapLinkClassName
|
|
1471
1471
|
),
|
|
1472
1472
|
children: link.label
|
|
@@ -1483,13 +1483,13 @@ function FooterSimpleCentered({
|
|
|
1483
1483
|
const bottomLinksContent = React.useMemo(() => {
|
|
1484
1484
|
if (!bottomLinks || bottomLinks.length === 0) return null;
|
|
1485
1485
|
return bottomLinks.map((link, idx) => /* @__PURE__ */ jsxRuntime.jsxs(React__namespace.Fragment, { children: [
|
|
1486
|
-
idx > 0 && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "
|
|
1486
|
+
idx > 0 && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "opacity-70", children: "\u2022" }),
|
|
1487
1487
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1488
1488
|
Pressable,
|
|
1489
1489
|
{
|
|
1490
1490
|
href: link.href,
|
|
1491
1491
|
className: cn(
|
|
1492
|
-
"text-sm
|
|
1492
|
+
"text-sm opacity-80 transition-colors hover:opacity-100",
|
|
1493
1493
|
bottomLinkClassName
|
|
1494
1494
|
),
|
|
1495
1495
|
children: link.text
|
|
@@ -1552,7 +1552,7 @@ function FooterSimpleCentered({
|
|
|
1552
1552
|
"div",
|
|
1553
1553
|
{
|
|
1554
1554
|
className: cn(
|
|
1555
|
-
"flex flex-col items-baseline justify-between gap-8 border-t
|
|
1555
|
+
"flex flex-col items-baseline justify-between gap-8 border-t pt-8 md:flex-row md:gap-16",
|
|
1556
1556
|
bottomBarClassName
|
|
1557
1557
|
),
|
|
1558
1558
|
children: [
|
|
@@ -1560,7 +1560,7 @@ function FooterSimpleCentered({
|
|
|
1560
1560
|
"div",
|
|
1561
1561
|
{
|
|
1562
1562
|
className: cn(
|
|
1563
|
-
"flex flex-col gap-2 text-xs
|
|
1563
|
+
"flex flex-col gap-2 text-xs opacity-80 sm:flex-row sm:items-center sm:gap-4 sm:text-sm",
|
|
1564
1564
|
copyrightClassName
|
|
1565
1565
|
),
|
|
1566
1566
|
children: [
|
|
@@ -1571,7 +1571,7 @@ function FooterSimpleCentered({
|
|
|
1571
1571
|
internalBrandSlug: "open_site_ai",
|
|
1572
1572
|
optionIndex: 5,
|
|
1573
1573
|
variant: "span",
|
|
1574
|
-
linkClassName: "underline underline-offset-4 transition-colors hover:
|
|
1574
|
+
linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
|
|
1575
1575
|
}
|
|
1576
1576
|
)
|
|
1577
1577
|
]
|
|
@@ -1445,7 +1445,7 @@ function FooterSimpleCentered({
|
|
|
1445
1445
|
{
|
|
1446
1446
|
href: link.href,
|
|
1447
1447
|
className: cn(
|
|
1448
|
-
"text-sm
|
|
1448
|
+
"text-sm opacity-80 transition-colors hover:opacity-100",
|
|
1449
1449
|
sitemapLinkClassName
|
|
1450
1450
|
),
|
|
1451
1451
|
children: link.label
|
|
@@ -1462,13 +1462,13 @@ function FooterSimpleCentered({
|
|
|
1462
1462
|
const bottomLinksContent = useMemo(() => {
|
|
1463
1463
|
if (!bottomLinks || bottomLinks.length === 0) return null;
|
|
1464
1464
|
return bottomLinks.map((link, idx) => /* @__PURE__ */ jsxs(React.Fragment, { children: [
|
|
1465
|
-
idx > 0 && /* @__PURE__ */ jsx("span", { className: "
|
|
1465
|
+
idx > 0 && /* @__PURE__ */ jsx("span", { className: "opacity-70", children: "\u2022" }),
|
|
1466
1466
|
/* @__PURE__ */ jsx(
|
|
1467
1467
|
Pressable,
|
|
1468
1468
|
{
|
|
1469
1469
|
href: link.href,
|
|
1470
1470
|
className: cn(
|
|
1471
|
-
"text-sm
|
|
1471
|
+
"text-sm opacity-80 transition-colors hover:opacity-100",
|
|
1472
1472
|
bottomLinkClassName
|
|
1473
1473
|
),
|
|
1474
1474
|
children: link.text
|
|
@@ -1531,7 +1531,7 @@ function FooterSimpleCentered({
|
|
|
1531
1531
|
"div",
|
|
1532
1532
|
{
|
|
1533
1533
|
className: cn(
|
|
1534
|
-
"flex flex-col items-baseline justify-between gap-8 border-t
|
|
1534
|
+
"flex flex-col items-baseline justify-between gap-8 border-t pt-8 md:flex-row md:gap-16",
|
|
1535
1535
|
bottomBarClassName
|
|
1536
1536
|
),
|
|
1537
1537
|
children: [
|
|
@@ -1539,7 +1539,7 @@ function FooterSimpleCentered({
|
|
|
1539
1539
|
"div",
|
|
1540
1540
|
{
|
|
1541
1541
|
className: cn(
|
|
1542
|
-
"flex flex-col gap-2 text-xs
|
|
1542
|
+
"flex flex-col gap-2 text-xs opacity-80 sm:flex-row sm:items-center sm:gap-4 sm:text-sm",
|
|
1543
1543
|
copyrightClassName
|
|
1544
1544
|
),
|
|
1545
1545
|
children: [
|
|
@@ -1550,7 +1550,7 @@ function FooterSimpleCentered({
|
|
|
1550
1550
|
internalBrandSlug: "open_site_ai",
|
|
1551
1551
|
optionIndex: 5,
|
|
1552
1552
|
variant: "span",
|
|
1553
|
-
linkClassName: "underline underline-offset-4 transition-colors hover:
|
|
1553
|
+
linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
|
|
1554
1554
|
}
|
|
1555
1555
|
)
|
|
1556
1556
|
]
|
|
@@ -1692,7 +1692,7 @@ function FooterSocialApps({
|
|
|
1692
1692
|
] })
|
|
1693
1693
|
] })
|
|
1694
1694
|
] }),
|
|
1695
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-24 border-t pt-8", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col justify-between gap-4 text-center text-sm font-medium
|
|
1695
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-24 border-t pt-8", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col justify-between gap-4 text-center text-sm font-medium opacity-80 md:flex-row md:text-left", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-wrap items-center gap-4", children: [
|
|
1696
1696
|
/* @__PURE__ */ jsxRuntime.jsx(FooterCopyright, { copyright }),
|
|
1697
1697
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1698
1698
|
BrandAttribution,
|
|
@@ -1700,7 +1700,7 @@ function FooterSocialApps({
|
|
|
1700
1700
|
internalBrandSlug: "open_site_ai",
|
|
1701
1701
|
optionIndex: 6,
|
|
1702
1702
|
variant: "span",
|
|
1703
|
-
linkClassName: "underline underline-offset-4 transition-colors hover:
|
|
1703
|
+
linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
|
|
1704
1704
|
}
|
|
1705
1705
|
)
|
|
1706
1706
|
] }) }) })
|
|
@@ -1671,7 +1671,7 @@ function FooterSocialApps({
|
|
|
1671
1671
|
] })
|
|
1672
1672
|
] })
|
|
1673
1673
|
] }),
|
|
1674
|
-
/* @__PURE__ */ jsx("div", { className: "mt-24 border-t pt-8", children: /* @__PURE__ */ jsx("div", { className: "flex flex-col justify-between gap-4 text-center text-sm font-medium
|
|
1674
|
+
/* @__PURE__ */ jsx("div", { className: "mt-24 border-t pt-8", children: /* @__PURE__ */ jsx("div", { className: "flex flex-col justify-between gap-4 text-center text-sm font-medium opacity-80 md:flex-row md:text-left", children: /* @__PURE__ */ jsxs("div", { className: "flex flex-wrap items-center gap-4", children: [
|
|
1675
1675
|
/* @__PURE__ */ jsx(FooterCopyright, { copyright }),
|
|
1676
1676
|
/* @__PURE__ */ jsx(
|
|
1677
1677
|
BrandAttribution,
|
|
@@ -1679,7 +1679,7 @@ function FooterSocialApps({
|
|
|
1679
1679
|
internalBrandSlug: "open_site_ai",
|
|
1680
1680
|
optionIndex: 6,
|
|
1681
1681
|
variant: "span",
|
|
1682
|
-
linkClassName: "underline underline-offset-4 transition-colors hover:
|
|
1682
|
+
linkClassName: "underline underline-offset-4 transition-colors hover:opacity-100"
|
|
1683
1683
|
}
|
|
1684
1684
|
)
|
|
1685
1685
|
] }) }) })
|