# Beste UI

> Beautiful, accessible blocks, pieces and components for shadcn/ui and Tailwind CSS, built for React and Next.js. Install one with the shadcn CLI and the code is yours to edit: no runtime dependency, nothing to upgrade.

Markdown rendition of https://ui.beste.co/block/footer10. Every page on the site has one: add `.md` to any address, or send `Accept: text/markdown`.

Last updated: 2026-01-13

Whole catalog for LLMs: https://ui.beste.co/llms.txt. Registry index: https://ui.beste.co/r/registry.json

---
1. /
2. [Blocks](/blocks)
3. /
4. [Footer](/blocks/footer)
5. /
6. Split Brand Footer

# 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.

ViewCodeDocs

Base UI

![](https://oud.pics/sm/l/npm.svg)`npx shadcn add https://ui.beste.co/r-base/footer10`

## Footer10: Split Brand Footer

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**

bashCopy

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

**Base UI flavor**

bashCopy

```
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.

tsxCopy

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

tsxCopy

```
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

| Prop      | Type        | Default | Description                                     |
| --------- | ----------- | ------- | ----------------------------------------------- |
| logo      | Logo        | –       | Wordmark link; 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>            |

tsCopy

```
type Logo = { text?: string; href?: string };
type NavLink = { label: string; href?: string };
```

### Behavior notes

* Layout splits into a left brand block (logo, tagline, copyright) and a right `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`.
* Link hover is an underline (`hover:underline hover:underline-offset-4`), unlike footer9 and footer11 which use a plain color swap.

## More Footer blocks

[View all Footer](/blocks/footer)

[](/block/footer117)

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.

[](/block/footer122)

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.

[](/block/footer13)

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.

[](/block/footer15)

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.

[](/block/footer9)

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.

[](/block/footer11)

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.

## Ship the interface, keep the code.

New blocks, pieces and components every week. Install one with a command and it is yours to edit. No runtime dependency, no upgrade path to fight.

[Browse the libraryBrowse the library](/blocks)[See pricingSee pricing](/pricing)

### Library

* [Blocks](/blocks)
* [Pages](/pages)
* [Pieces](/pieces)
* [Components](/components)
* [Search](/search)

### Learn

* [Docs](/docs)
* [AI & MCP](/docs/mcp)
* [Blog](/blog)
* [Free tools](/tools)
* [What's new?](/changelog)
* [Website Builder](https://beste.co)

### More

* [Pricing](/pricing)
* [Referrals](/referrals)
* [License](/license)
* [GitHub](https://github.com/beste-co/beste-ui)

### Shadcn Blocks

* [Shadcn Hero Blocks](/blocks/hero)
* [Shadcn Feature Blocks](/blocks/feature)
* [Shadcn Pricing Blocks](/blocks/pricing)
* [Shadcn CTA Blocks](/blocks/cta)
* [Shadcn FAQ Blocks](/blocks/faq)
* [Shadcn About Blocks](/blocks/about)
* [Shadcn Stats Blocks](/blocks/stats)
* [Shadcn Footer Blocks](/blocks/footer)
* [Shadcn Navigation Blocks](/blocks/navigation)
* [Shadcn Auth Blocks](/blocks/auth)
* [Shadcn Ecommerce Blocks](/blocks/ecommerce)
* [Shadcn Portfolio Blocks](/blocks/portfolio)
* [Shadcn Showcase Blocks](/blocks/showcase)
* [Shadcn Careers Blocks](/blocks/careers)
* [Shadcn Onboarding Blocks](/blocks/onboarding)
* [Shadcn Coming Soon Blocks](/blocks/coming-soon)
* [Shadcn Post Blocks](/blocks/post)
* [Shadcn Legal Blocks](/blocks/legal)
* [Shadcn Workflow Blocks](/blocks/workflow)
* [Shadcn News Blocks](/blocks/news)

© 2026, [Beste](https://beste.co). All rights reserved.