@olwiba/ui 0.0.43 → 0.0.44
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/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/marketing/Footer.tsx +6 -6
package/dist/index.js
CHANGED
|
@@ -1607,18 +1607,18 @@ function Footer({
|
|
|
1607
1607
|
}) {
|
|
1608
1608
|
const brandHref = brand.href ?? "/";
|
|
1609
1609
|
const copyrightText = legal ?? `\xA9 ${(/* @__PURE__ */ new Date()).getFullYear()} ${brand.name}. All rights reserved.`;
|
|
1610
|
-
return /* @__PURE__ */ jsx("footer", { className: "overflow-hidden rounded-2xl border bg-
|
|
1610
|
+
return /* @__PURE__ */ jsx("footer", { className: "overflow-hidden rounded-2xl border bg-muted text-foreground", children: /* @__PURE__ */ jsxs("div", { className: "mx-auto max-w-7xl px-6 py-20 sm:py-24 lg:px-8", children: [
|
|
1611
1611
|
/* @__PURE__ */ jsx("div", { className: "flex justify-center", children: renderLink({
|
|
1612
1612
|
href: brandHref,
|
|
1613
1613
|
className: "flex items-center gap-2",
|
|
1614
1614
|
children: /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1615
|
-
brand.logo && /* @__PURE__ */ jsx("span", { className: "flex h-8 w-8 items-center justify-center rounded-lg bg-
|
|
1616
|
-
/* @__PURE__ */ jsx("span", { className: "text-lg font-semibold text-
|
|
1615
|
+
brand.logo && /* @__PURE__ */ jsx("span", { className: "flex h-8 w-8 items-center justify-center rounded-lg bg-foreground/10 text-foreground", children: brand.logo }),
|
|
1616
|
+
/* @__PURE__ */ jsx("span", { className: "text-lg font-semibold text-foreground", children: brand.name })
|
|
1617
1617
|
] })
|
|
1618
1618
|
}) }),
|
|
1619
1619
|
navLinks && navLinks.length > 0 && /* @__PURE__ */ jsx("nav", { className: "mt-10 flex flex-wrap justify-center gap-x-12 gap-y-3", "aria-label": "Footer", children: navLinks.map(({ label, href }) => /* @__PURE__ */ jsx("div", { children: renderLink({
|
|
1620
1620
|
href,
|
|
1621
|
-
className: "text-sm/6 text-
|
|
1621
|
+
className: "text-sm/6 text-muted-foreground transition-colors hover:text-foreground",
|
|
1622
1622
|
children: label
|
|
1623
1623
|
}) }, label)) }),
|
|
1624
1624
|
socialLinks && socialLinks.length > 0 && /* @__PURE__ */ jsx("div", { className: "mt-10 flex justify-center gap-x-10", children: socialLinks.map(({ label, href, icon }) => /* @__PURE__ */ jsx(
|
|
@@ -1626,12 +1626,12 @@ function Footer({
|
|
|
1626
1626
|
{
|
|
1627
1627
|
href,
|
|
1628
1628
|
"aria-label": label,
|
|
1629
|
-
className: "text-
|
|
1629
|
+
className: "text-muted-foreground transition-colors hover:text-foreground",
|
|
1630
1630
|
children: icon
|
|
1631
1631
|
},
|
|
1632
1632
|
label
|
|
1633
1633
|
)) }),
|
|
1634
|
-
/* @__PURE__ */ jsx("p", { className: "mt-10 text-center text-sm/6 text-
|
|
1634
|
+
/* @__PURE__ */ jsx("p", { className: "mt-10 text-center text-sm/6 text-muted-foreground/70", children: copyrightText })
|
|
1635
1635
|
] }) });
|
|
1636
1636
|
}
|
|
1637
1637
|
var speedDuration = {
|