Components
Loading preview...
A game-style title screen hero with stat cards and blinking PRESS START text. Pixel-perfect 8-bit retro landing page.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/8bit-hero3import Hero3 from "@/components/ui/8bit-hero3";
export default function Demo() {
return (
<div className="flex items-center justify-center min-h-screen w-full bg-background retro">
<Hero3
title="8BITCN"
subtitle="EST. 2026"
description="A retro component library that brings the golden age of gaming to modern web development."
stats={[
{ label: "COMPONENTS", value: "50+" },
{ label: "GITHUB STARS", value: "1.7K" },
{ label: "CONTRIBUTORS", value: "100+" },
]}
/>
</div>
);
}