A footer that gives its left half to a working subscribe row and its right half to three link columns, closed by a colophon line sitting opposite the legal links.
A footer that gives its left half to a working subscribe row and its right half to three link columns, closed by a colophon line sitting opposite the legal links.
Upgrade to Pro
Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.
Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.
Radix flavor
npx shadcn add "https://ui.beste.co/r/footer123?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/footer123?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/footer123.tsx, the badge6 component used for the eyebrow, and the shadcn/ui input and button primitives behind the subscribe row.
The installed file exports footer123Demo alongside the block: the exact props behind the preview above. Spread it to get a working footer in one line.
import { Footer123, footer123Demo } from "@/components/beste/block/footer123";
export default function Layout() {
return <Footer123 {...footer123Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Footer123 } from "@/components/beste/block/footer123";
export default function SiteFooter() {
return (
<Footer123
eyebrow="Before you go"
heading="One letter, every Tuesday"
placeholder="you@studio.com"
submitLabel="Subscribe"
confirmation="You are on the list. See you Tuesday."
columns={[
{
title: "Writing",
links: [
{ label: "Essays", href: "/essays" },
{ label: "Archive", href: "/archive" },
],
},
]}
colophon="Set in one typeface, published from a folder of text files."
legal={[{ label: "Privacy", href: "/privacy" }]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Badge6 label above the subscribe pitch |
heading | string | – | One line on what the list is |
placeholder | string | – | Placeholder in the email field |
submitLabel | string | – | Label on the submit button |
confirmation | string | – | Line that replaces the row after submitting |
columns | LinkColumn[] | [] | Link columns on the right |
colophon | string | – | Line about how the site is made |
legal | FooterLink[] | [] | Legal links, opposite the colophon |
className | string | – | Extra classes for the outer footer |
type LinkColumn = {
title: string;
links: FooterLink[];
};
type FooterLink = {
label: string;
href: string;
};1fr to 1.2fr split from lg up, so the link columns take slightly more room than the pitch. Below that everything stacks with the pitch first.sm:grid-cols-3 and takes what you pass.footer element and adds its own border-t, so it can sit directly after page content.footer119
A light footer with a lowercase wordmark, a tagline, a newsletter signup, three link columns, and a bottom bar of legal links over a hairline rule.
footer19
Footer with email subscription form, navigation columns, legal links, and social icons. Perfect for content sites and businesses building email lists.
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.