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.
Two-column footer with the brand identity (logo, tagline, copyright) stacked on the left and a run of navigation links on the right, collapsing to a single stacked column on mobile.
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/footer10"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/footer10"This installs the block to components/beste/block/footer10.tsx and its dependencies.
The installed file exports footer10Demo alongside the block: the exact props behind the preview above. Spread it to get a working footer in one line.
import { Footer10, footer10Demo } from "@/components/beste/block/footer10";
export default function Layout() {
return <Footer10 {...footer10Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Footer10 } from "@/components/beste/block/footer10";
export default function Layout() {
return (
<Footer10
logo={{ text: "Northwind", href: "/" }}
tagline="Tools for the modern web."
links={[
{ label: "Careers", href: "/careers" },
{ label: "Privacy", href: "/privacy" },
{ label: "Terms", href: "/terms" },
]}
copyright="© 2026 Northwind."
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
logo | Logo | – | Wordmark link; hidden entirely when logo.text is unset |
tagline | string | – | One-line description shown under the logo |
links | NavLink[] | [] | Right-column nav links |
copyright | string | – | Copyright line, rendered under the tagline |
className | string | – | Extra classes for the outer <footer> |
type Logo = { text?: string; href?: string };
type NavLink = { label: string; href?: string };links nav using justify-between; on mobile the brand block stacks above the links.copyright renders directly beneath the tagline inside the same left column, not as a separate bottom bar, and uses a smaller text-xs size than the tagline's text-sm.hover:underline hover:underline-offset-4), unlike footer9 and footer11 which use a plain color swap.footer117
Two-column footer — a parenthetical label, closing heading, pill CTA and email on the left beside a stacked oversized nav on the right, over a copyright and socials bar.
footer122
A four-column footer with a wide brand column carrying a parenthetical eyebrow, an oversized wordmark, a two-line tagline and labelled social links, beside three ruled link columns with an inline mail address and a centered copyright bar.
footer13
Comprehensive footer with brand section, four navigation columns, social links, and bottom legal links. Perfect for enterprise websites and established businesses with extensive site structures.
footer15
Four-column navigation footer with brand description and dedicated social media icon row in the bottom section. Perfect for media companies and brands with strong social presence.