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.
footer126
A compact centred footer: the serif wordmark, a one-line serif statement and a sliding-marker pill, a single row of small-caps links, and a ruled bottom row with the copyright and social links.
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.