Publication Footer With Subscribe RowPRO

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.

Upgrade Now

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/footer123?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

Quick start

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.

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

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

Props

PropTypeDefaultDescription
eyebrowstringBadge6 label above the subscribe pitch
headingstringOne line on what the list is
placeholderstringPlaceholder in the email field
submitLabelstringLabel on the submit button
confirmationstringLine that replaces the row after submitting
columnsLinkColumn[][]Link columns on the right
colophonstringLine about how the site is made
legalFooterLink[][]Legal links, opposite the colophon
classNamestringExtra classes for the outer footer
ts
type LinkColumn = {
  title: string;
  links: FooterLink[];
};

type FooterLink = {
  label: string;
  href: string;
};

Behavior notes

More Footer blocks

View all Footer
PRO

footer104

Newsletter Footer

Footer led by a subscribe form beside link columns.

PRO

footer119

Editorial Newsletter Footer

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.

PRO

footer19

Newsletter Subscription Footer

Footer with email subscription form, navigation columns, legal links, and social icons. Perfect for content sites and businesses building email lists.

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

footer107

Newsletter Footer

Newsletter-forward footer — a parenthetical label and oversized heading beside an email field with a pill submit, over a ruled bottom bar of wordmark, nav and social links.

PRO

footer111

Ruled Index Footer

Editorial directory footer — a parenthetical label and statement above ruled sitemap rows, each pairing a section title with a wrapping set of links, closed by a wordmark and copyright line.