Skip to content

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-corporate/section/footer-status
Open ↗

Source

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

export interface FooterStatusProps {
  brand?: string;
  brandHref?: string;
  status?: { label: string; tone: "success" | "warning" | "danger"; href: string };
  columns?: { title: string; links: { label: string; href: string }[] }[];
  className?: string;
}

const DEFAULT_COLUMNS = [
  {
    title: "Developers",
    links: [
      { label: "API reference", href: "#api" },
      { label: "Webhooks", href: "#webhooks" },
      { label: "SDKs", href: "#sdks" },
      { label: "Changelog", href: "#changelog" },
    ],
  },
  {
    title: "Product",
    links: [
      { label: "Invoicing", href: "#invoicing" },
      { label: "Payments", href: "#payments" },
      { label: "Pricing", href: "#pricing" },
    ],
  },
  {
    title: "Legal",
    links: [
      { label: "Privacy", href: "#privacy" },
      { label: "Terms", href: "#terms" },
      { label: "DPA", href: "#dpa" },
    ],
  },
];

const TONE = { success: "bg-da-success", warning: "bg-da-warning", danger: "bg-da-danger" } as const;

function LedgerlyMark({ className }: { className?: string }) {
  return (
    <svg aria-hidden viewBox="0 0 28 28" className={cn("size-7", className)}>
      <rect width="28" height="28" rx="7" fill="var(--da-primary)" />
      <path d="M8 8v12h12" stroke="var(--da-primary-fg)" strokeWidth="2.6" fill="none" strokeLinecap="round" />
      <path d="M13 15h7M13 11h7" stroke="var(--da-primary-fg)" strokeWidth="2.2" strokeLinecap="round" opacity=".7" />
    </svg>
  );
}

/** Developer-oriented dark footer (fg/bg inverted): brand, live system-status pill with pulsing dot, API version in mono, and three link columns. */
export function FooterStatus({
  brand = "Ledgerly",
  brandHref = "/",
  status = { label: "All systems operational", tone: "success", href: "#status" },
  columns = DEFAULT_COLUMNS,
  className,
}: FooterStatusProps) {
  return (
    <footer className={cn("bg-da-fg text-da-bg", className)}>
      <div className="da-container grid gap-10 py-14 md:grid-cols-[1.5fr_repeat(3,1fr)]">
        <div>
          <a href={brandHref} className="da-focus inline-flex items-center gap-2 rounded-da-sm font-da-display text-lg font-extrabold">
            <LedgerlyMark />
            {brand}
          </a>
          <a
            href={status.href}
            className="da-focus da-transition mt-6 flex w-fit items-center gap-2 rounded-da-pill border border-current/20 px-3 py-1.5 text-sm hover:border-current/50"
          >
            <span aria-hidden className="relative flex size-2">
              <span className={cn("absolute inset-0 animate-ping rounded-full opacity-60 motion-reduce:hidden", TONE[status.tone])} />
              <span className={cn("relative size-2 rounded-full", TONE[status.tone])} />
            </span>
            {status.label}
          </a>
          <p className="mt-4 font-da-mono text-xs opacity-70">API v2026-09 · 99.99% uptime (90d)</p>
        </div>
        {columns.map((c) => (
          <nav key={c.title} aria-label={c.title}>
            <h2 className="text-xs font-semibold tracking-da-label uppercase opacity-70">{c.title}</h2>
            <ul className="mt-4 space-y-2.5 text-sm">
              {c.links.map((l) => (
                <li key={l.label}>
                  <a href={l.href} className="da-focus rounded-da-sm opacity-90 hover:underline hover:opacity-100">
                    {l.label}
                  </a>
                </li>
              ))}
            </ul>
          </nav>
        ))}
      </div>
      <p className="border-t border-current/15 py-5 text-center text-xs opacity-70">© 2026 {brand}, Inc.</p>
    </footer>
  );
}

export default FooterStatus;

modules/neo-corporate/section/footer-status/index.tsx

Props

PropTypeDefaultDescription
brandstring—Brand name.
brandHrefstring—Brand link target.
status{ label: string; tone: "success" | "warning" | "danger"; href: string }—Status.
columns{ title: string; links: { label: string; href: string }[] }[]—Columns.
classNamestring—Extra classes on the root.

Other footer variants in Neo Corporate

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