Brand Column FooterPRO

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.

A four-column studio footer: a wide brand column carries a parenthetical eyebrow, an oversized wordmark, a two-line tagline and a row of labelled social links, while three ruled link columns sit beside it with an optional mail address inline, all closing on a centered copyright rule.

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

Base UI flavor

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

This installs the block to components/beste/block/footer122.tsx plus the badge7 eyebrow it uses.

Quick start

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

tsx
import { Footer122, footer122Demo } from "@/components/beste/block/footer122";

export default function Page() {
  return <Footer122 {...footer122Demo} />;
}

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

tsx
import { Footer122 } from "@/components/beste/block/footer122";

export default function Page() {
  return (
    <Footer122
      badge={{ label: "Keep in touch" }}
      brand="Auralis"
      brandHref="/"
      description={"Strategy, craft and a small team that stays on.\nWhere calm brands find their shape."}
      socials={[
        { label: "Instagram", icon: "instagram", href: "https://instagram.com/auralis" },
        { label: "LinkedIn", icon: "linkedin", href: "https://linkedin.com/company/auralis" },
      ]}
      columns={[
        {
          title: "Studio",
          links: [
            { label: "About us", href: "/about" },
            { label: "Selected work", href: "/work" },
          ],
        },
        {
          title: "Journal",
          links: [{ label: "Recent notes", href: "/journal" }],
        },
        {
          title: "Contact",
          links: [{ label: "Start a project", href: "/contact" }],
          email: "hello@auralis.co",
        },
      ]}
      copyright="© 2026 Auralis. Made with intent."
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the wordmark, rendered as a Badge7
brandstringWordmark at the top of the brand column
brandHrefstring"https://beste.co"Destination the wordmark links to
descriptionstringTagline under the wordmark, newlines preserved
socialsSocialLink[][]Labelled social links closing the brand column
columnsFooterColumn[][]Ruled link columns beside the brand column
copyrightstringCentered line in the bottom bar
classNamestringExtra classes for the outer <footer>
ts
type SocialIcon =
  | "instagram"
  | "twitter"
  | "linkedin"
  | "facebook"
  | "youtube"
  | "dribbble";

type SocialLink = {
  label: string;
  icon: SocialIcon;
  href: string;
};

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

type FooterColumn = {
  title: string;
  links: FooterLink[];
  email?: string;
};

Behavior notes

More Footer blocks

View all Footer
PRO

footer13

Enterprise Multi-Column Footer

Comprehensive footer with brand section, four navigation columns, social links, and bottom legal links. Perfect for enterprise websites and established businesses with extensive site structures.

FREE

footer10

Split Brand Footer

Two-column footer with brand logo, tagline, and copyright on left, navigation links on right. Perfect for startups and SaaS products wanting clean brand presentation.

PRO

footer15

Social Bar Multi-Column Footer

Four-column navigation footer with brand description and dedicated social media icon row in the bottom section. Perfect for media companies and brands with strong social presence.

PRO

footer108

Oversized Wordmark Footer

Footer with a brand intro and three link columns over a copyright bar, closed by one oversized wordmark cropped at low opacity so its lower third bleeds off the bottom edge.

PRO

footer106

Wordmark Card Footer

Footer with a CTA row, then a bordered card holding the brand, a statement heading, a back-to-top link, three link columns, copyright, and an oversized wordmark bleeding off the bottom edge.

PRO

footer16

Contact Info Multi-Column Footer

Business footer with extended brand section including email, phone, and address, plus three navigation columns. Perfect for service businesses and agencies that need prominent contact information.