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.
minimal/section/hero-glowSource
import { ArrowRight, ChevronRight } from "lucide-react";
import { cn } from "@/lib/utils";
export interface HeroGlowCta {
label: string;
href: string;
}
export interface HeroGlowIncident {
id: string;
title: string;
service: string;
severity: "SEV1" | "SEV2" | "SEV3";
status: "Investigating" | "Identified" | "Monitoring" | "Resolved";
age: string;
}
export interface HeroGlowProps {
announcement?: { label: string; href: string };
title?: string;
description?: string;
primaryCta?: HeroGlowCta;
secondaryCta?: HeroGlowCta;
incidents?: HeroGlowIncident[];
/** Hide the product window under the copy. */
hideMockup?: boolean;
className?: string;
}
const SEVERITY: Record<HeroGlowIncident["severity"], string> = {
SEV1: "bg-da-danger",
SEV2: "bg-da-warning",
SEV3: "bg-da-muted-fg",
};
const DEFAULT_INCIDENTS: HeroGlowIncident[] = [
{ id: "INC-2481", title: "Elevated 5xx on checkout-api", service: "checkout-api", severity: "SEV1", status: "Identified", age: "4m" },
{ id: "INC-2480", title: "Webhook delivery delays (eu-west-1)", service: "webhooks", severity: "SEV2", status: "Monitoring", age: "38m" },
{ id: "INC-2477", title: "Search p95 latency above 800ms", service: "search", severity: "SEV3", status: "Investigating", age: "1h" },
{ id: "INC-2472", title: "Login emails not delivered to Outlook", service: "notifications", severity: "SEV2", status: "Resolved", age: "3h" },
];
export function HeroGlow({
announcement = { label: "Tracewise AI now drafts your postmortems", href: "#changelog" },
title = "Resolve incidents before your customers notice",
description = "Tracewise routes the right alert to the right engineer, spins up the war room, and keeps your status page honest — so you can get back to shipping.",
primaryCta = { label: "Start for free", href: "#signup" },
secondaryCta = { label: "Book a demo", href: "#demo" },
incidents = DEFAULT_INCIDENTS,
hideMockup = false,
className,
}: HeroGlowProps) {
return (
<section className={cn("relative isolate overflow-hidden bg-da-bg pt-20 pb-16 text-da-fg sm:pt-28", className)}>
{/* Single soft glow + fading grid, the only decoration of the page */}
<div
aria-hidden
className="absolute inset-x-0 -top-40 -z-10 mx-auto h-[520px] max-w-4xl rounded-full bg-da-primary/25 blur-[120px]"
/>
<div
aria-hidden
className="absolute inset-0 -z-10 [background-image:linear-gradient(var(--da-border)_1px,transparent_1px),linear-gradient(90deg,var(--da-border)_1px,transparent_1px)] [background-size:64px_64px] [mask-image:radial-gradient(ellipse_60%_50%_at_50%_0%,black,transparent)]"
/>
<div className="da-container flex flex-col items-center text-center">
<a
href={announcement.href}
className="da-focus da-transition group da-stroke inline-flex items-center gap-2 rounded-da-pill bg-da-surface/60 py-1 pr-2.5 pl-1 text-[13px] text-da-muted-fg backdrop-blur hover:text-da-fg"
>
<span className="rounded-da-pill bg-da-accent px-2 py-0.5 text-xs font-medium text-da-accent-fg">New</span>
{announcement.label}
<ChevronRight aria-hidden className="da-transition size-3.5 group-hover:translate-x-0.5" />
</a>
<h1 className="mt-6 max-w-3xl bg-gradient-to-b from-da-fg to-da-fg/65 bg-clip-text font-da-display text-[clamp(2.5rem,6vw,4.5rem)] leading-[1.02] font-semibold tracking-da-display text-balance text-transparent">
{title}
</h1>
<p className="mt-6 max-w-xl text-[17px] leading-relaxed text-pretty text-da-muted-fg">{description}</p>
<div className="mt-8 flex flex-wrap items-center justify-center gap-3">
<a
href={primaryCta.href}
className="da-focus da-transition group inline-flex h-10 items-center gap-1.5 rounded-da-md bg-da-primary px-4 text-sm font-medium text-da-primary-fg shadow-da-sm hover:bg-da-primary/90"
>
{primaryCta.label}
<ArrowRight aria-hidden className="da-transition size-4 group-hover:translate-x-0.5" />
</a>
<a
href={secondaryCta.href}
className="da-focus da-transition da-stroke inline-flex h-10 items-center rounded-da-md bg-da-surface px-4 text-sm font-medium text-da-surface-fg shadow-da-sm hover:bg-da-muted"
>
{secondaryCta.label}
</a>
</div>
</div>
{!hideMockup && (
<div className="da-container mt-16 sm:mt-20">
<div className="relative [mask-image:linear-gradient(to_bottom,black_70%,transparent)]">
<div className="da-stroke overflow-hidden rounded-da-lg bg-da-surface text-da-surface-fg shadow-da-lg">
<div className="flex items-center gap-3 border-b border-da-border px-4 py-3">
<span aria-hidden className="flex gap-1.5">
<span className="size-2.5 rounded-full bg-da-fg/15" />
<span className="size-2.5 rounded-full bg-da-fg/15" />
<span className="size-2.5 rounded-full bg-da-fg/15" />
</span>
<p className="text-[13px] font-medium">Incidents</p>
<p className="ml-auto font-da-mono text-[11px] text-da-muted-fg">
<span className="mr-1.5 inline-block size-1.5 rounded-full bg-da-success align-middle" />
3 on-call · 2 active
</p>
</div>
<ul className="divide-y divide-da-border text-left">
{incidents.map((inc) => (
<li key={inc.id} className="flex items-center gap-4 px-4 py-3 text-sm">
<span aria-hidden className={cn("size-2 shrink-0 rounded-full", SEVERITY[inc.severity])} />
<span className="hidden w-20 shrink-0 font-da-mono text-xs text-da-muted-fg sm:block">{inc.id}</span>
<span className="min-w-0 flex-1 truncate">{inc.title}</span>
<span className="hidden shrink-0 rounded-da-sm bg-da-muted px-1.5 py-0.5 font-da-mono text-[11px] text-da-muted-fg md:block">
{inc.service}
</span>
<span className="w-24 shrink-0 text-right text-xs text-da-muted-fg">{inc.status}</span>
<span className="w-8 shrink-0 text-right font-da-mono text-xs text-da-muted-fg">{inc.age}</span>
</li>
))}
</ul>
</div>
</div>
</div>
)}
</section>
);
}
export default HeroGlow;
modules/minimal/section/hero-glow/index.tsx
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| announcement | { label: string; href: string } | — | Pill link above the title. |
| title | string | — | Headline (h1), sentence case. |
| description | string | — | Supporting paragraph. |
| primaryCta | { label: string; href: string } | Start for free | Indigo button. |
| secondaryCta | { label: string; href: string } | Book a demo | Outlined button. |
| incidents | HeroGlowIncident[] | — | Rows of the product mock ({ id, title, service, severity, status, age }). |
| hideMockup | boolean | false | Remove the product window. |
| className | string | — | Classes on the <section>. |
Other hero variants in Minimal
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.
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.
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.
Hero in other art directions
Hero Poster
Poster-style centered hero: gigantic stacked headline alternating solid and outlined words, colored feature stickers scattered around it, two pressable CTAs and a ruled wordmark strip of customer logos.
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.
Hero Stacked
Split hero with a huge stacked uppercase headline (one line boxed in yellow), two pressable CTAs, a stats strip and a changelog window mock with a rotated sticker.
Hero Terminal
Developer-first hero: full-width uppercase headline, copyable install command button, and an ink terminal window that replays a git merge → publish session line by line with a blinking yellow cursor.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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).
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.
Hero Proof
Centered proof-first hero on a faint grid: announcement badge, headline, CTAs, a four-stat bordered strip and a customer wordmark row.
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.
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.
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.
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.
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.
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).
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.
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.