Publication Footer With Subscribe Row

About this block

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

  • The subscribe row is real: submitting swaps it for the confirmation line in place, with no page change and no request. Point the handler at your own list when you wire it up.
  • The layout is a 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.
  • Columns are driven by data, so three is a demo choice rather than a fixed grid: the inner grid is sm:grid-cols-3 and takes what you pass.
  • The colophon and the legal links share the closing row, opposite each other on desktop and stacked on a phone.
  • The block renders a footer element and adds its own border-t, so it can sit directly after page content.

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

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

footer127

Columns and Letter Footer

A light footer with the serif wordmark, a tagline and a rounded newsletter field with a sliding-marker pill on the left, three link groups on the right, and a ruled bottom row with the copyright and legal links.

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.