Compact single-row footer with logo, horizontal navigation links, and copyright text. Perfect for landing pages and minimal websites that need simple site-wide navigation.
Compact single-row footer that packs a logo, a run of horizontal nav links, and a copyright line into one bar, collapsing to a stacked layout on mobile. The leanest footer in the set, with no social icons, columns, or forms.
Free block
This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.
Radix flavor
npx shadcn add "https://ui.beste.co/r/footer9"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/footer9"This installs the block to components/beste/block/footer9.tsx and its dependencies.
The installed file exports footer9Demo alongside the block: the exact props behind the preview above. Spread it to get a working footer in one line.
import { Footer9, footer9Demo } from "@/components/beste/block/footer9";
export default function Layout() {
return <Footer9 {...footer9Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Footer9 } from "@/components/beste/block/footer9";
export default function Layout() {
return (
<Footer9
logo={{ text: "Northwind", href: "/" }}
links={[
{ label: "About", href: "/about" },
{ label: "Pricing", href: "/pricing" },
{ label: "Contact", href: "/contact" },
]}
copyright="© 2026 Northwind. All rights reserved."
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
logo | Logo | – | Wordmark link; the whole logo block is skipped when logo.text is unset |
links | NavLink[] | [] | Inline nav links, rendered in order |
copyright | string | – | Copyright line |
className | string | – | Extra classes for the outer <footer> |
type Logo = { text?: string; href?: string };
type NavLink = { label: string; href?: string };md: they sit on one row with the copyright pushed to the far edge via justify-between.link without an href falls back to # rather than being dropped from the list.hover:text-foreground), not an underline.footer21
Centered minimal footer with horizontal navigation, trust badges, and payment method icons. Perfect for smaller online stores wanting a clean checkout-focused layout.
footer121
A compact centered footer with a lowercase wordmark, a short tagline, an uppercase link row, a social row over a hairline rule, and a copyright line.
footer10
Two-column footer with brand logo, tagline, and copyright on left, navigation links on right. Perfect for startups and SaaS products wanting clean brand presentation.
footer11
Vertically stacked footer with centered logo, navigation links, social media icons, and copyright. Perfect for portfolios and personal brands wanting a symmetrical layout.
footer108
Footer with a brand intro and three link columns over a copyright bar, closed by one oversized wordmark cropped at low opacity so its lower third bleeds off the bottom edge.
footer23
Centered footer with prominent heading, large circular social media icon buttons, and minimal navigation. Perfect for creators and influencers driving social engagement.