Skip to content

Footer Minimal

One-line footer: logo mark, copyright, and links separated by slashes — all in mono caps on a single hairline row; wraps gracefully on mobile.

mono-clean/section/footer-minimal
Open ↗

Source

import { cn } from "@/lib/utils";

export interface FooterMinimalProps {
  brand?: string;
  brandHref?: string;
  links?: { label: string; href: string }[];
  className?: string;
}

function FrameMark({ className }: { className?: string }) {
  return (
    <svg aria-hidden viewBox="0 0 24 24" className={cn("size-6 shrink-0", className)}>
      <rect x="1" y="1" width="22" height="22" fill="none" stroke="currentColor" strokeWidth="2" />
      <path d="M7 1v22M1 7h22" stroke="currentColor" strokeWidth="2" />
      <rect x="15" y="15" width="4" height="4" fill="var(--da-accent)" />
    </svg>
  );
}

/** One-line footer: logo mark, copyright, and links separated by slashes — all in mono caps on a single hairline row; wraps gracefully on mobile. */
export function FooterMinimal({
  brand = "Frame",
  brandHref = "/",
  links = [
    { label: "Templates", href: "#templates" },
    { label: "Pricing", href: "#pricing" },
    { label: "Privacy", href: "#privacy" },
    { label: "Terms", href: "#terms" },
  ],
  className,
}: FooterMinimalProps) {
  return (
    <footer className={cn("border-t border-da-border bg-da-bg text-da-fg", className)}>
      <div className="da-container flex flex-wrap items-center justify-between gap-4 py-6 font-da-mono text-[11px] tracking-da-label uppercase">
        <a href={brandHref} className="da-focus flex items-center gap-2 rounded-da-sm">
          <FrameMark className="size-4" />© 2026 {brand}
        </a>
        <nav aria-label="Footer">
          <ul className="flex flex-wrap items-center gap-x-2 gap-y-1 text-da-muted-fg">
            {links.map((l, i) => (
              <li key={l.label} className="flex items-center gap-2">
                {i > 0 && <span aria-hidden>/</span>}
                <a href={l.href} className="da-focus rounded-da-sm hover:text-da-fg">
                  {l.label}
                </a>
              </li>
            ))}
          </ul>
        </nav>
      </div>
    </footer>
  );
}

export default FooterMinimal;

modules/mono-clean/section/footer-minimal/index.tsx

Props

PropTypeDefaultDescription
brandstring—Brand name.
brandHrefstring—Brand link target.
links{ label: string; href: string }[]—Links.
classNamestring—Extra classes on the root.

Other footer variants in Mono Clean

Footer in other art directions

Footer Bar

Single-row ruled footer for apps and docs: wordmark, link cells that flood yellow on hover, green status square and copyright, each separated by vertical strokes; stacks on mobile.

BrutalistFooter

Footer CTA

Footer that opens with a full-bleed yellow call-to-action band (huge headline + ink button), then brand with social chips, three link columns and a copyright line on paper.

BrutalistFooter

Footer Mega

Inverted ink footer with brand + status pill, three link columns, a viewport-wide wordmark and a legal bar. Link hover paints a yellow highlight.

BrutalistFooter

Footer Sitemap

Dense sitemap footer: boxed newsletter strip with success state, five ruled link columns with pink badges (New, hiring count), then brand, legal links and a language select.

BrutalistFooter

Footer Cta

Glass footer panel that opens with a gradient CTA band (headline + white button), then brand, tagline, three link columns and a legal row.

GlassFooter

Footer Glass

Inset frosted footer panel with brand, tagline, pill newsletter form (success state), three link columns and a legal bar.

GlassFooter

Footer Pill

Compact floating glass pill footer: gradient dot brand with copyright, inline links and round social buttons; becomes a stacked rounded card on mobile.

GlassFooter

Footer Wordmark

A giant gradient brand wordmark sits behind a frosted glass panel holding three link columns and the legal line, so the letters glow through the blur.

GlassFooter

Footer Minimal

Single-row footer: small square mark, brand and copyright, a handful of links and a live ‘All systems normal’ status pill. Stacks on mobile.

MinimalFooter

Footer Newsletter

Tinted footer with brand, tagline and an inline newsletter form on the left, three link columns on the right and a legal row below.

MinimalFooter

Footer Simple

Quiet footer: brand, one-line description and a live status pill with pulsing dot, three link columns in muted text, and a hairline bottom bar with copyright and social links.

MinimalFooter

Footer Wordmark

Footer with a row of links, address and socials, ending on a giant edge-to-edge lowercase brand wordmark that fades into the page and is cropped by the bottom edge.

MinimalFooter

Footer Compact

Single-row compact footer: logo mark + copyright on the left, inline links on the right, hairline top border; stacks on mobile.

Neo CorporateFooter

Footer Enterprise

Large enterprise footer on surface-2: brand + tagline + region selector on the left, five link columns, then a bottom bar with legal links, compliance chips and copyright.

Neo CorporateFooter

Footer Newsletter

Footer led by a newsletter band (“The Finance Brief”) with an inline email form, then three link columns and a copyright line.

Neo CorporateFooter

Footer Status

Developer-oriented dark footer (fg/bg inverted): brand, live system-status pill with pulsing dot, API version in mono, and three link columns.

Neo CorporateFooter

Footer Garden

Large footer on deep sage (a dark sage tint in dark mode) with rolling-hill silhouettes along the top edge, logo + tagline, three link columns and a “we measure our own footprint” note in the bottom line.

Organic SoftFooter

Footer Letter

Footer written like the end of a letter: a huge italic serif sign-off, a handwritten-style signature line, contact email and a simple link row under a warm rule.

Organic SoftFooter

Footer Newsletter

Footer with an inline journal signup: logo + rounded email form in a sage-tinted card on the left, two link columns on the right, and a sand-colored bottom strip.

Organic SoftFooter

Footer Simple

Quiet centered footer: logo and serif wordmark, a single row of links separated by leaf dots, and a small copyright line on cream.

Organic SoftFooter

Footer Columns

Classic footer on a soft panel with big rounded top corners: shape logo and tagline, three link columns in rounded headings, and a legal row with a language pill.

Soft FlatFooter

Footer Cta

Footer opening with a lavender CTA card that overlaps the top of a soft bottom band holding the brand, inline links and legal line.

Soft FlatFooter

Footer Pastel

Playful footer where each link column is its own pastel tile (peach, mint, lavender) plus a butter brand tile with round emoji social buttons and the legal line.

Soft FlatFooter

Footer Simple

Centered minimal footer: rounded wordmark with a periwinkle dot, a row of soft pill links and a small “made with care” line.

Soft FlatFooter