@olwiba/ui 0.2.16 → 0.2.17
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 +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/marketing/Footer.tsx +5 -1
- package/src/marketing/Navbar.tsx +22 -2
package/dist/index.js
CHANGED
|
@@ -3327,7 +3327,7 @@ function Navbar({
|
|
|
3327
3327
|
href: brandHref,
|
|
3328
3328
|
children: /* @__PURE__ */ jsxs("span", { className: "flex items-center gap-2 font-semibold", children: [
|
|
3329
3329
|
brand.logo,
|
|
3330
|
-
/* @__PURE__ */ jsx("span", { children: brand.name })
|
|
3330
|
+
/* @__PURE__ */ jsx("span", { className: "leading-none [text-box-edge:ex_alphabetic] [text-box-trim:trim-both]", children: brand.name })
|
|
3331
3331
|
] })
|
|
3332
3332
|
}),
|
|
3333
3333
|
/* @__PURE__ */ jsx("div", { className: `hidden items-center gap-1 md:flex ${!hasRightContent ? "col-span-2 justify-end" : ""}`, children: navLinks.map((link) => /* @__PURE__ */ jsx("span", { children: renderLink({
|
|
@@ -3360,7 +3360,7 @@ function Navbar({
|
|
|
3360
3360
|
href: brandHref,
|
|
3361
3361
|
children: /* @__PURE__ */ jsxs("span", { className: "flex items-center gap-2 font-semibold", children: [
|
|
3362
3362
|
brand.logo,
|
|
3363
|
-
/* @__PURE__ */ jsx("span", { children: brand.name })
|
|
3363
|
+
/* @__PURE__ */ jsx("span", { className: "leading-none [text-box-edge:ex_alphabetic] [text-box-trim:trim-both]", children: brand.name })
|
|
3364
3364
|
] })
|
|
3365
3365
|
}) }) }),
|
|
3366
3366
|
/* @__PURE__ */ jsx(Separator, {}),
|
|
@@ -3400,7 +3400,7 @@ function Footer({
|
|
|
3400
3400
|
className: "flex items-center gap-2",
|
|
3401
3401
|
children: /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
3402
3402
|
brand.logo,
|
|
3403
|
-
/* @__PURE__ */ jsx("span", { className: "text-lg font-semibold text-foreground", children: brand.name })
|
|
3403
|
+
/* @__PURE__ */ jsx("span", { className: "text-lg font-semibold leading-none text-foreground [text-box-edge:ex_alphabetic] [text-box-trim:trim-both]", children: brand.name })
|
|
3404
3404
|
] })
|
|
3405
3405
|
}) }),
|
|
3406
3406
|
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({
|