Split Brand FooterFREE

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.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/footer10"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/footer10"

This installs the block to components/beste/block/footer10.tsx and its dependencies.

Quick start

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.

tsx
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:

tsx
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."
    />
  );
}

Props

PropTypeDefaultDescription
logoLogoWordmark link; hidden entirely when logo.text is unset
taglinestringOne-line description shown under the logo
linksNavLink[][]Right-column nav links
copyrightstringCopyright line, rendered under the tagline
classNamestringExtra classes for the outer <footer>
ts
type Logo = { text?: string; href?: string };
type NavLink = { label: string; href?: string };

Behavior notes

More Footer blocks

View all Footer
PRO

footer117

Split CTA Footer

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.

PRO

footer122

Brand Column Footer

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.

PRO

footer13

Enterprise Multi-Column Footer

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.

PRO

footer15

Social Bar Multi-Column Footer

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.

FREE

footer9

Minimal Inline Footer

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.

FREE

footer11

Centered Social Footer

Vertically stacked footer with centered logo, navigation links, social media icons, and copyright. Perfect for portfolios and personal brands wanting a symmetrical layout.

Markdown version