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.
A photographic footer: a closing statement settles in word by word over a valley under grain, then a newsletter row beside three link groups, and a ruled line carrying the wordmark, socials and copyright.
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/footer124?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/footer124?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/footer124.tsx, the shadcn input primitive the newsletter is built on, and the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports footer124Demo alongside the block: the exact props behind the preview above. Spread it to get a working footer in one line.
import { Footer124, footer124Demo } from "@/components/beste/block/footer124";
export default function Page() {
return <Footer124 {...footer124Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Footer124 } from "@/components/beste/block/footer124";
export default function Page() {
return (
<Footer124
brand="Altair"
statement="Progress rarely feels like progress while it is happening. You do not have to walk it alone."
image={{ src: "/photos/valley.jpg", alt: "A wide green valley under soft evening light" }}
newsletter={{
title: "A letter, once a month",
description: "One short note on rest, attention and the slow work.",
placeholder: "Your email",
button: "Join",
}}
groups={[
{
title: "Practice",
links: [
{ label: "About", href: "/about" },
{ label: "Fees", href: "/pricing" },
],
},
]}
socials={[{ label: "Instagram", href: "https://instagram.com" }]}
copyright="2026 Altair. Registered practice, Lisbon."
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Wordmark on the closing rule |
statement | string | – | Closing statement, rendered as a <p> through Text1 |
image | { src: string; alt: string } | – | Full-bleed background photograph |
newsletter | Newsletter | – | Title, description and email capture |
groups | LinkGroup[] | [] | Link columns, three across from md |
socials | FooterLink[] | [] | Social links on the closing rule |
copyright | string | – | Copyright line |
className | string | – | Extra classes for the outer <footer> |
type LinkGroup = {
title: string;
links: FooterLink[];
};
type FooterLink = {
label: string;
href: string;
};
type Newsletter = {
title: string;
description: string;
placeholder: string;
button: string;
};p rather than a heading, and its stagger is tightened to 0.035s: it runs to several sentences, so the default rhythm would still be assembling long after the reader arrives.foreground/70 to foreground/95), so the copyright line at the bottom sits on the deepest part of the wash while the statement keeps some of the picture behind it.Input is restyled for a dark surface with a translucent fill and a background/30 border, and its focus ring is traded for a solid border, because the shadcn default is drawn for a light one.useId, so two grain surfaces on one page cannot collide on a global SVG id.md, so a three-group footer never leaves one column stranded on its own row.preventDefault(); no address is captured or sent until you wire it up.Wiring the form up
This block ships the form markup only; state, validation, and submit are yours to add. Our guide wires the shadcn Field primitives to React Hook Form, TanStack Form, and Formisch on one field system.
footer127
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.
footer126
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.
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.
footer125
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.