TetraKits UI Minimal Startup Hero ← Library

Minimal Startup Hero

Minimal startup hero with oversized typography, uppercase eyebrow label, and underline link CTA. Light Tailwind layout with generous whitespace. Perfect for Y Combinator-style product launches, portfolios, and indie hacker landing pages. Zero dependencies beyond React.

minimal herostartup landing pagetypography heroreact tailwindclean ui
Live preview

Dependencies

react
npm install react react-dom
export function MinimalStartupHero() {
  return (
    <section className="mx-auto flex min-h-[70vh] max-w-4xl flex-col justify-center px-6 py-20">
      <p className="text-sm font-medium uppercase tracking-[0.2em] text-zinc-500">TetraKits UI</p>
      <h1 className="mt-4 text-5xl font-semibold leading-[1.05] tracking-tight text-zinc-900 sm:text-7xl">
        Design that feels inevitable.
      </h1>
      <p className="mt-6 max-w-xl text-lg text-zinc-600">
        Premium React sections you can paste into any Next.js or Vite project.
      </p>
      <a href="#" className="mt-10 inline-flex w-fit border-b-2 border-zinc-900 pb-1 text-sm font-semibold uppercase tracking-widest">
        Explore library →
      </a>
    </section>
  );
}