Valley Footer

About this block

Valley FooterPRO

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.

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

Base UI flavor

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

Quick start

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.

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

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

Props

PropTypeDefaultDescription
brandstringWordmark on the closing rule
statementstringClosing statement, rendered as a <p> through Text1
image{ src: string; alt: string }Full-bleed background photograph
newsletterNewsletterTitle, description and email capture
groupsLinkGroup[][]Link columns, three across from md
socialsFooterLink[][]Social links on the closing rule
copyrightstringCopyright line
classNamestringExtra classes for the outer <footer>
ts
type LinkGroup = {
  title: string;
  links: FooterLink[];
};

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

type Newsletter = {
  title: string;
  description: string;
  placeholder: string;
  button: string;
};

Behavior notes

  • The statement is a 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.
  • The background photograph has no parallax here. A footer is the last thing on the page and there is nothing below it to scroll against, so a drift would only ever be half seen.
  • The gradient darkens downward (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.
  • The 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.
  • The grain filter's id comes from useId, so two grain surfaces on one page cannot collide on a global SVG id.
  • Link groups are a plain two-column grid on a phone and three across from md, so a three-group footer never leaves one column stranded on its own row.
  • The newsletter form only calls 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.

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

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

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

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.

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

footer120

CTA Footer

A footer that opens with a light closing heading and accent buttons over a hairline rule, then a slim bottom bar with a lowercase wordmark, a link row, and copyright.