Skip to content

Hero Signup

Conversion hero with the signup form in the fold: headline with a blue highlighted phrase, boxed email capture with pending/success states, checkmark reassurance list and three staggered colored step cards.

brutalist/section/hero-signup
Open ↗

Source

"use client";

import { useId, useState, type FormEvent } from "react";
import { Check } from "lucide-react";
import { cn } from "@/lib/utils";

export interface HeroSignupProps {
  title?: string;
  highlight?: string;
  description?: string;
  checklist?: string[];
  buttonLabel?: string;
  finePrint?: string;
  onSubmit?: (email: string) => void | Promise<void>;
  steps?: { title: string; detail: string }[];
  className?: string;
}

const STEP_TONES = ["bg-da-primary text-da-primary-fg", "bg-da-accent text-da-accent-fg", "bg-da-secondary text-da-secondary-fg"];

export function HeroSignup({
  title = "Your first changelog in",
  highlight = "5 minutes",
  description = "Enter your work email, connect a repo, merge a PR. That's the whole onboarding.",
  checklist = ["Free forever for one project", "GitHub, GitLab & Bitbucket", "No credit card"],
  buttonLabel = "Create my changelog",
  finePrint = "By signing up you agree to the Terms and Privacy Policy.",
  onSubmit,
  steps = [
    { title: "Connect", detail: "Install the GitHub app on acme/web" },
    { title: "Label", detail: "Tag PRs with feature, fix or improvement" },
    { title: "Ship", detail: "Publish to changelog, widget and Slack" },
  ],
  className,
}: HeroSignupProps) {
  const inputId = useId();
  const [state, setState] = useState<"idle" | "pending" | "done">("idle");

  async function submit(e: FormEvent<HTMLFormElement>) {
    e.preventDefault();
    const email = new FormData(e.currentTarget).get("email");
    if (typeof email !== "string") return;
    setState("pending");
    await onSubmit?.(email);
    setState("done");
  }

  return (
    <section className={cn("da-section da-stroke-b bg-da-bg text-da-fg", className)}>
      <div className="da-container grid gap-12 lg:grid-cols-[1.2fr_1fr] lg:items-center">
        <div>
          <h1 className="font-da-display text-[clamp(2.5rem,6vw,4.75rem)] leading-[0.95] tracking-da-display uppercase">
            {title} <span className="bg-da-secondary px-2 text-da-secondary-fg [box-decoration-break:clone]">{highlight}</span>
          </h1>
          <p className="mt-6 max-w-lg text-lg text-da-muted-fg">{description}</p>

          {state === "done" ? (
            <p role="status" className="da-stroke mt-8 max-w-lg bg-da-success p-5 font-bold text-da-success-fg shadow-da-md">
              ✓ Check your inbox — your workspace is ready.
            </p>
          ) : (
            <form onSubmit={submit} className="da-stroke mt-8 flex max-w-lg flex-col bg-da-surface p-2 shadow-da-md sm:flex-row">
              <label htmlFor={inputId} className="sr-only">
                Work email
              </label>
              <input
                id={inputId}
                name="email"
                type="email"
                required
                autoComplete="email"
                placeholder="you@company.com"
                className="da-focus min-w-0 flex-1 bg-transparent px-3 py-3 text-lg text-da-surface-fg placeholder:text-da-muted-fg"
              />
              <button
                type="submit"
                disabled={state === "pending"}
                className="da-focus da-stroke bg-da-fg px-5 py-3 font-bold text-da-bg disabled:opacity-60"
              >
                {state === "pending" ? "Creating…" : buttonLabel}
              </button>
            </form>
          )}
          <ul className="mt-6 flex flex-wrap gap-x-6 gap-y-2">
            {checklist.map((c) => (
              <li key={c} className="flex items-center gap-2 text-sm font-bold">
                <span aria-hidden className="da-stroke grid size-5 place-items-center bg-da-success text-da-success-fg">
                  <Check className="size-3" strokeWidth={4} />
                </span>
                {c}
              </li>
            ))}
          </ul>
          <p className="mt-4 font-da-mono text-[11px] text-da-muted-fg">{finePrint}</p>
        </div>

        <ol className="relative flex flex-col gap-5">
          {steps.map((s, i) => (
            <li
              key={s.title}
              className={cn("da-stroke flex items-center gap-5 p-5 shadow-da-md", STEP_TONES[i % STEP_TONES.length], i === 1 && "lg:ml-10", i === 2 && "lg:ml-20")}
            >
              <span className="font-da-display text-5xl leading-none">{i + 1}</span>
              <span>
                <span className="block font-da-display text-xl tracking-da-display uppercase">{s.title}</span>
                <span className="text-sm font-medium opacity-85">{s.detail}</span>
              </span>
            </li>
          ))}
        </ol>
      </div>
    </section>
  );
}

export default HeroSignup;

modules/brutalist/section/hero-signup/index.tsx

Props

PropTypeDefaultDescription
title / highlightstring—Headline and its highlighted end.
descriptionstring—Supporting paragraph.
checkliststring[]—Reassurance items under the form.
buttonLabel / finePrintstring—Submit label and legal line.
onSubmit(email: string) => void | Promise<void>—Called with the email; awaited for the pending state.
steps{ title: string; detail: string }[]—Numbered onboarding steps on the right.
classNamestring—Classes on the <section>.

Other hero variants in Brutalist

Hero in other art directions

Hero Centered

Centered hero over the mesh: frosted badge, headline with gradient-text ending, gradient + frosted CTAs, then a wide glass ‘live call’ window with four video tiles, live transcript and an AI capture chip.

GlassHero

Hero Mesh

Split hero over the glass mesh: frosted announcement pill, headline with gradient-text second half, gradient + frosted CTAs, and a layered composition of glass cards (AI meeting recap, floating video update, recording pill) gently bobbing.

GlassHero

Hero Stack

Split hero with a fanned 3D stack of three glass cards (AI recap, async video, synced tasks) tilted in perspective, spreading apart with a spring on hover.

GlassHero

Hero Waitlist

Minimal waitlist hero with a central glow: badge, big headline, a glass pill email form with gradient submit (pending, success, error states) and a stack of gradient avatars with the waitlist count.

GlassHero

Hero Cli

Developer-first centered hero on a dotted grid: version badge, headline, an install command field with copy-to-clipboard, a docs button and a terminal window showing the command output.

MinimalHero

Hero Glow

Centered hero with announcement pill, gradient-ink headline, two CTAs, a single soft indigo glow over a masked hairline grid, and an HTML product window (incident list) fading out at the bottom.

MinimalHero

Hero Metrics

Editorial left-aligned hero with an oversized tight headline, copy and CTAs on one baseline, a row of three hairline-separated mono metrics and a text wordmark strip of customers.

MinimalHero

Hero Split

Two-column hero: eyebrow, headline, copy, checklist and two CTAs on the left; on the right a hairline card showing a live incident timeline with colored status dots and a resolved badge.

MinimalHero

Hero Browser

Split hero: copy on the left, a large monochrome browser frame on the right showing a mock studio portfolio (nav, giant name, image grid with mono captions) and a signal-dot “Published” badge.

Mono CleanHero

Hero Giant

Type-led hero: a mono label, an enormous tightly-tracked headline across the full width, then a 12-col row with copy + ink button on the left and mono key facts on the right, over a full-bleed gray image frame with caption.

Mono CleanHero

Hero Grid

Visible-grid hero: hairline 12-column guides behind the content, headline + copy + ink CTA in the left columns, and a ruled index list of featured templates on the right whose rows invert on hover.

Mono CleanHero

Hero Statement

Quiet manifesto hero: a single large statement set in the display face with generous line height and an orange signal dot after a key word, bottom-anchored mono footnotes and a scroll cue; nearly full-height.

Mono CleanHero

Hero Band

Stripe-style hero on a deep blue gradient band with a slanted bottom edge: headline and CTAs on the left, a stacked pair of payment UI cards (invoice + payment success) on the right.

Neo CorporateHero

Hero Dashboard

Split hero: eyebrow, strong headline, copy, blue + bordered CTAs and a compliance line; on the right a finance dashboard mock (KPIs, bar chart, invoice table).

Neo CorporateHero

Hero Demo

Enterprise demo-request hero: copy + check bullets + quote on the left, a bordered lead form (name, work email, company, size, submit) with validation-ready fields and success state on the right.

Neo CorporateHero

Hero Proof

Centered proof-first hero on a faint grid: announcement badge, headline, CTAs, a four-stat bordered strip and a customer wordmark row.

Neo CorporateHero

Hero Arch

Split hero: eyebrow with sprout icon, large serif headline with an italic sage highlight, calm copy, pill CTAs; on the right a tall arch-topped illustration (sun + rolling hills) with a floating stat chip.

Organic SoftHero

Hero Centered

Centered serif hero floating over two soft organic blobs (sage and clay), a hand-drawn underline under the italic highlight, pill CTAs and a row of three calm stats.

Organic SoftHero

Hero Editorial

Magazine-style hero: oversized serif headline across the width with an italic line, a collage of three organic shapes (arch, circle with leaf, pebble) and a pull-quote column; scroll cue.

Organic SoftHero

Hero Footprint

Product hero: copy + CTAs on the left, a soft rounded footprint card on the right with a donut chart of emissions by source, legend with percentages and a gentle “biggest lever” tip.

Organic SoftHero

Hero Illustrated

Split hero: butter badge, rounded headline, pill CTAs and avatar-dot social proof on the left; a flat pastel kanban illustration made of shapes (columns, tinted cards, circles) with a floating “done” chip on the right.

Soft FlatHero

Hero Planner

Centered hero with a big rounded headline and pill CTAs above a full-width weekly planner mock-up: five day columns with date numbers and pastel task chips (fewer columns on small screens).

Soft FlatHero

Hero Signup

Sign-up hero on a large butter panel: headline with a peach marker-highlighted phrase, white pill email form with success state, check perks and a 5-star rating line.

Soft FlatHero

Hero Tiles

Hero with a left headline block and ink CTA next to a 2×2 grid of pastel feature tiles (peach, mint, lavender, butter) with white icon squares, the right column offset downward.

Soft FlatHero