Back to Discover
Hero SectionsIntermediate
Hero Section
A minimal, typography-focused hero section suitable for developer tools.
Live Preview
v2.0 is now live
Build interfaces that feel expensive.
A curated archive of high-quality frontend components, animations, and interaction designs.
export function HeroSection() {
return (
<section className="w-full flex flex-col items-center justify-center text-center px-4 py-12">
<div className="inline-flex items-center rounded-full border border-border px-3 py-1 text-sm text-muted-foreground mb-8">
<span className="flex h-2 w-2 rounded-full bg-green-500 mr-2"></span>
v2.0 is now live
</div>
<h1 className="text-4xl md:text-5xl font-bold tracking-tight text-foreground mb-6 max-w-2xl">
Build interfaces that feel <span className="text-muted-foreground">expensive.</span>
</h1>
<p className="text-lg text-muted-foreground mb-10 max-w-xl">
A curated archive of high-quality frontend components, animations, and interaction designs.
</p>
<div className="flex items-center justify-center gap-4">
<button className="rounded-md bg-foreground text-background px-6 py-3 font-medium transition-colors hover:bg-[#e0e0e0]">
Get Started
</button>
<button className="rounded-md border border-border bg-transparent px-6 py-3 font-medium text-foreground transition-colors hover:bg-muted">
Documentation
</button>
</div>
</section>
);
}