ShowcaseHero

Large stacked hero heading with eyebrow, optional accent line, subtitle, and stat row. Showcase tier typography (between app and marketing scale).

Preview

Usage

import { ShowcaseHero, ShowcaseStat } from '@ramtt/ui'

<ShowcaseHero
  eyebrow="Ramtt · Hue register"
  lines={['All 20 hues.', '7 stops each.', '160 colors.']}
  accentLine={2}
  subtitle="The complete color register — every hue, every stop, surface-aware and token-driven."
>
  <div className="flex gap-10">
    <ShowcaseStat label="Total colors" value="147" />
    <ShowcaseStat label="Active hues" value="14" />
  </div>
</ShowcaseHero>

Props

PropTypeDefaultDescription
eyebrowstringPre-label above heading
lines*string[]Heading lines (one per visual line)
accentLinenumberIndex of line to render in accent color
subtitlestringSubtitle paragraph
childrenReactNodeContent below subtitle (e.g. ShowcaseStat row)