Centred Footer

About this block

Centred FooterPRO

A compact centred footer: the serif wordmark, a one-line serif statement and a sliding-marker pill, a single row of small-caps links, and a ruled bottom row with the copyright and social links.

A centred footer with almost nothing in it: a serif wordmark, one closing line, a pill, a single wrapped row of small-caps links, and a rule carrying the copyright and socials.

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/footer126?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/footer126.tsx plus the button22 sliding-marker pill it uses.

Quick start

The installed file exports footer126Demo alongside the block: the exact props behind the preview above. Spread it to get a working footer in one line.

tsx
import { Footer126, footer126Demo } from "@/components/beste/block/footer126";

export default function Page() {
  return <Footer126 {...footer126Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Footer126 } from "@/components/beste/block/footer126";

export default function Page() {
  return (
    <Footer126
      brand="Altair"
      statement="Nobody has ever come too early."
      button={{ label: "Have a first conversation", href: "/call", tone: "dark" }}
      links={[
        { label: "Therapy", href: "/therapy" },
        { label: "Coaching", href: "/coaching" },
        { label: "Contact", href: "mailto:hello@beste.co" },
      ]}
      socials={[{ label: "Instagram", href: "https://instagram.com" }]}
      copyright="2026 Altair, Lisbon" 
    />
  );
}

Props

PropTypeDefaultDescription
brandstringSerif wordmark
statementstringOne closing line under the wordmark
buttonActionButtonPill action
linksFooterLink[][]Small-caps links in one wrapped row
socialsFooterLink[][]Social links on the closing rule
copyrightstringCopyright line
classNamestringExtra classes for the outer <footer>
ts
type FooterLink = {
  label: string;
  href: string;
};

type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • Links are one flat array rather than titled groups, which is what keeps this footer to a single row; it is the block for a site with six pages, not for a sitemap.
  • That row wraps with separate row and column gaps, so a longer list breaks into tidy lines on a phone rather than one cramped row.
  • The statement is capped at max-w-md with text-balance, so a short line breaks evenly instead of leaving one word alone on the second line.
  • The closing rule stacks on a phone and splits to justify-between from md, so the copyright and socials never crowd each other.
  • The wordmark is a p, not a heading: a footer brand is not a section title and should not appear in the page outline.
  • Nothing here loads or listens to scroll, so it costs nothing at the foot of an already heavy page.
  • Every part is optional, so this collapses cleanly to just a wordmark and a copyright line.

More Footer blocks

View all Footer
PRO

footer121

Minimal Centered Footer

A compact centered footer with a lowercase wordmark, a short tagline, an uppercase link row, a social row over a hairline rule, and a copyright line.

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.

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

footer125

Quiet Footer

A light footer with a large serif wordmark, a tagline and a sliding-marker pill on the left, three link groups on the right, and a ruled bottom row with the copyright, social links and a smooth back-to-top control.

FREE

footer21

Compact E-commerce Footer

Centered minimal footer with horizontal navigation, trust badges, and payment method icons. Perfect for smaller online stores wanting a clean checkout-focused layout.

PRO

footer124

Valley Footer

A photographic footer under a dark gradient scrim, soft drifting light and film grain: a serif closing statement that settles in word by word, a rounded newsletter field with a sliding-marker pill, three link groups, and a bottom row with the wordmark, social links and copyright.