Quiet Footer

About this block

Quiet FooterPRO

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.

A plain light footer: an oversized wordmark, a tagline and a pill on one side, three link columns on the other, and a closing rule with socials and a back-to-top button.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Footer125, footer125Demo } from "@/components/beste/block/footer125";

export default function Page() {
  return <Footer125 {...footer125Demo} />;
}

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

tsx
import { Footer125 } from "@/components/beste/block/footer125";

export default function Page() {
  return (
    <Footer125
      brand="Altair"
      tagline="A small practice for slow change. Lisbon, Porto soon, and online."
      button={{ label: "Start with a call", href: "/call", tone: "dark" }}
      groups={[
        {
          title: "Work",
          links: [
            { label: "Therapy", href: "/therapy" },
            { label: "Coaching", href: "/coaching" },
          ],
        },
      ]}
      socials={[{ label: "Instagram", href: "https://instagram.com" }]}
      copyright="2026 Altair. All sessions are confidential."
      labels={{ top: "Back to top" }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringOversized serif wordmark
taglinestringLine under the wordmark
buttonActionButtonPill action under the tagline
groupsLinkGroup[][]Link columns, three across from md
socialsFooterLink[][]Social links on the closing rule
copyrightstringCopyright line
labels{ top?: string }{}Back-to-top wording; the button is dropped when unset
classNamestringExtra classes for the outer <footer>
ts
type LinkGroup = {
  title: string;
  links: FooterLink[];
};

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

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

Behavior notes

  • The back-to-top button reads useReducedMotion before scrolling and passes behavior: "auto" when motion is reduced, so a reader who has asked for less movement is not thrown up the page in a long smooth animation.
  • It is a real button with type="button", not an anchor to #top, so it never adds a hash to the URL or leaves a dead entry in the history.
  • Its arrow lifts only under motion-safe:, so the affordance is dropped for reduced motion while the button keeps working.
  • The wordmark is set at text-5xl rising to text-6xl, which makes the brand the largest thing in the footer without needing a heading level it should not have.
  • Link groups are a two-column grid on a phone and three across from md, so no column is ever stranded alone on a row.
  • Nothing here loads: no photograph, no grain, no scroll listener, which is the difference between this footer and its photographic sibling.
  • Every part is optional, so this works as a bare wordmark and copyright as well as a full sitemap.

More Footer blocks

View all Footer
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

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

footer113

Big Logotype Footer

Footer led by a full-width oversized wordmark, then a newsletter field with an arrow submit and socials beside four titled link columns, closed by a quiet copyright line.

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.

PRO

footer126

Centred Footer

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.

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.