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.
glass/section/hero-centeredSource
import { ArrowRight, Pause, Sparkles } from "lucide-react";
import { cn } from "@/lib/utils";
export interface HeroCenteredProps {
badge?: string;
title?: string;
highlight?: string;
description?: string;
primaryCta?: { label: string; href: string };
secondaryCta?: { label: string; href: string };
transcript?: { speaker: string; text: string; time: string }[];
className?: string;
}
const GLASS = "da-stroke bg-da-surface backdrop-blur-da backdrop-saturate-150";
/** Centered hero over the mesh with a gradient-text line and a large frosted “live call” window: video tiles, live transcript and an AI summary chip. */
export function HeroCentered({
badge = "Halo 3.0 — now with live translation",
title = "Meetings that",
highlight = "write themselves",
description = "Halo listens, transcribes in 30 languages and hands you a crisp recap with decisions and owners — seconds after you hang up.",
primaryCta = { label: "Start free", href: "#signup" },
secondaryCta = { label: "See how it works", href: "#how" },
transcript = [
{ speaker: "Amara", text: "So we agree offline mode slips to November?", time: "12:04" },
{ speaker: "Leo", text: "Yes — I’ll write the RFC by Friday.", time: "12:04" },
{ speaker: "Sofia", text: "Pricing variant B won, shipping to 100% today.", time: "12:05" },
],
className,
}: HeroCenteredProps) {
const tiles = ["Amara Diallo", "Leo Park", "Sofia Rossi", "Noah Klein"];
return (
<section className={cn("relative overflow-hidden pt-20 pb-16 text-da-fg sm:pt-28", className)}>
<div className="da-container flex flex-col items-center text-center">
<p className={cn("inline-flex items-center gap-2 rounded-da-pill px-3 py-1.5 text-sm font-medium shadow-da-sm", GLASS)}>
<Sparkles aria-hidden className="size-4 text-da-primary" />
{badge}
</p>
<h1 className="mt-6 max-w-3xl font-da-display text-[clamp(2.5rem,6.5vw,4.75rem)] leading-[1.02] font-semibold tracking-da-display text-balance">
{title} <span className="bg-gradient-to-r from-da-primary via-da-accent to-da-primary bg-clip-text text-transparent">{highlight}</span>
</h1>
<p className="mt-6 max-w-xl text-lg text-pretty text-da-muted-fg">{description}</p>
<div className="mt-8 flex flex-wrap justify-center gap-3">
<a
href={primaryCta.href}
className="da-focus da-transition group inline-flex h-12 items-center gap-2 rounded-da-pill bg-gradient-to-r from-da-primary to-da-accent px-6 font-semibold text-da-primary-fg shadow-da-md hover:-translate-y-0.5 hover:shadow-da-lg"
>
{primaryCta.label}
<ArrowRight aria-hidden className="da-transition size-4 group-hover:translate-x-0.5" />
</a>
<a
href={secondaryCta.href}
className={cn("da-focus da-transition inline-flex h-12 items-center rounded-da-pill px-6 font-semibold shadow-da-sm hover:-translate-y-0.5", GLASS)}
>
{secondaryCta.label}
</a>
</div>
</div>
<div className="da-container mt-16">
<figure aria-label="Halo recording a team call" className={cn("mx-auto max-w-5xl rounded-da-lg p-3 shadow-da-lg", GLASS)}>
<div className="grid gap-3 lg:grid-cols-[1.6fr_1fr]">
<div className="grid grid-cols-2 gap-3">
{tiles.map((t, i) => (
<div
key={t}
className="relative aspect-video overflow-hidden rounded-da-md bg-gradient-to-br from-da-primary/25 via-da-surface-2 to-da-accent/25"
>
<span aria-hidden className="absolute inset-0 grid place-items-center">
<span className="grid size-14 place-items-center rounded-full bg-da-surface font-da-display text-lg font-semibold shadow-da-sm">
{t
.split(" ")
.map((p) => p[0])
.join("")}
</span>
</span>
<span className="absolute bottom-2 left-2 rounded-da-pill bg-da-fg/70 px-2 py-0.5 text-[11px] font-medium text-da-bg">{t}</span>
{i === 0 && <span aria-hidden className="absolute inset-0 rounded-da-md ring-2 ring-da-primary" />}
</div>
))}
</div>
<div className="flex flex-col rounded-da-md bg-da-surface-2 p-4 text-left">
<div className="flex items-center justify-between">
<p className="inline-flex items-center gap-2 text-sm font-semibold">
<span aria-hidden className="relative flex size-2">
<span className="absolute inset-0 animate-ping rounded-full bg-da-danger opacity-60 motion-reduce:hidden" />
<span className="relative size-2 rounded-full bg-da-danger" />
</span>
Live transcript
</p>
<span className="inline-flex items-center gap-1 font-da-mono text-xs text-da-muted-fg">
<Pause aria-hidden className="size-3" /> 32:10
</span>
</div>
<ul className="mt-4 space-y-3 text-sm">
{transcript.map((l) => (
<li key={l.text}>
<p className="text-xs text-da-muted-fg">
<span className="font-semibold text-da-fg">{l.speaker}</span> · {l.time}
</p>
<p className="mt-0.5">{l.text}</p>
</li>
))}
</ul>
<p className="mt-auto inline-flex items-center gap-2 self-start rounded-da-pill bg-gradient-to-r from-da-primary to-da-accent px-3 py-1.5 text-xs font-semibold text-da-primary-fg shadow-da-sm max-lg:mt-4">
<Sparkles aria-hidden className="size-3.5" /> 2 decisions · 3 action items captured
</p>
</div>
</div>
</figure>
</div>
</section>
);
}
export default HeroCentered;
modules/glass/section/hero-centered/index.tsx
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| badge / title / highlight / description | string | — | Copy (highlight = gradient part). |
| primaryCta / secondaryCta | { label, href } | — | Actions. |
| transcript | { speaker, text, time }[] | — | Transcript lines. |
| className | string | — | Classes. |
Other hero variants in Glass
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 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 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 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.
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 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.