Skip to content
This repository was archived by the owner on Nov 20, 2025. It is now read-only.

Commit bf3be99

Browse files
rewrite footer UI
1 parent df003fa commit bf3be99

File tree

1 file changed

+3
-3
lines changed
  • packages/section-blog-theme/components/Footer

1 file changed

+3
-3
lines changed

packages/section-blog-theme/components/Footer/Footer.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ export function Footer({
1818
socialLinks: SocialLinks[];
1919
}) {
2020
return (
21-
<footer className="print:nx-hidden nx-container nx-flex nx-flex-wrap nx-flex-row nx-item-center nx-justify-center nx-my-5 nx-p-5 nx-mx-auto lg:nx-flex-row nx-divide-gray-400">
21+
<footer className="nx-container print:nx-hidden nx-mt-3 nx-px-4 lg:nx-px-6 nx-py-8 nx-flex nx-gap-y-5 nx-justify-center nx-flex-col sm:nx-flex-row md:nx-justify-between nx-items-center nx-mx-auto">
2222
<Link
2323
aria-label="brand logo"
24-
target={Logo.target ? Logo.target : "_blank"}
24+
target={Logo.target ? Logo.target : "_self"}
2525
href={Logo.link ? Logo.link : "/"}
2626
className="nx-flex nx-flex-row nx-items-center nx-justify-between"
2727
>
2828
{renderComponent(Logo.logo)}
2929
</Link>
3030

3131
<NavigationMenu className="nx-my-3 nx-flex nx-flex-wrap nx-justify-between nx-items-center nx-mx-auto md:nx-my-0">
32-
<NavigationMenuList>
32+
<NavigationMenuList className="nx-flex-wrap sm:nx-flex-row">
3333
{SecondaryNavigation.map((navigation: Navigation) => {
3434
return (
3535
<NavigationItem key={navigation.title} navigation={navigation} />

0 commit comments

Comments
 (0)