Skip to content

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-flat/section/footer-simple
Open ↗

Source

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

export interface FooterSimpleProps {
  brand?: string;
  links?: { label: string; href: string }[];
  note?: string;
  className?: string;
}

/** Centered minimal footer: wordmark with a dot, a row of pill links and a small “made with care” note. */
export function FooterSimple({
  brand = "Planta",
  links = [
    { label: "Pricing", href: "#pricing" },
    { label: "Help", href: "#help" },
    { label: "Privacy", href: "#privacy" },
    { label: "Terms", href: "#terms" },
  ],
  note = "Made with care in Lisbon · © 2026",
  className,
}: FooterSimpleProps) {
  return (
    <footer className={cn("bg-da-bg py-12 text-center text-da-fg", className)}>
      <p className="font-da-display text-2xl font-extrabold tracking-da-display">
        {brand}
        <span className="text-da-primary">.</span>
      </p>
      <nav aria-label="Footer" className="mt-5">
        <ul className="flex flex-wrap justify-center gap-2">
          {links.map((l) => (
            <li key={l.href}>
              <a href={l.href} className="da-focus da-transition inline-block rounded-da-pill bg-da-surface-2 px-4 py-2 text-sm font-medium hover:bg-da-muted">
                {l.label}
              </a>
            </li>
          ))}
        </ul>
      </nav>
      <p className="mt-6 text-sm text-da-muted-fg">{note}</p>
    </footer>
  );
}

export default FooterSimple;

modules/soft-flat/section/footer-simple/index.tsx

Props

PropTypeDefaultDescription
brand / notestring—Texts.
links{ label, href }[]—Links.
classNamestring—Classes.

Other footer variants in Soft Flat

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 Columns

Footer with a newsletter: underline-input “Studio notes” signup in the first half, link columns in the second, all on a hairline grid; mono copyright row.

Mono CleanFooter

Footer Giant

Signature footer: small link rows above, and the brand name set enormous across the full width at the bottom, clipped by the page edge; inverted (ink) background.

Mono CleanFooter

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 CleanFooter

Footer Mono

Grid footer: ink top rule, logo + one-line description in the first columns, three mono-headed link columns, and a bottom row of legal links and a live-status signal dot.

Mono CleanFooter

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