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.
Dependencies
react
npm install react react-domexport 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>
);
}
Please implement this code in the current project and add it to (Your Desired Section, e.g. homepage hero, pricing page, dashboard). Change the primary accent color to (YOUR HEX CODE COLOR, e.g. #6366F1).
Requirements:
- Use React + Tailwind CSS (match the project's existing setup)
- Install dependencies if needed: npm install react react-dom
- Keep the layout responsive on mobile and desktop
- Replace placeholder copy with content that fits the project
The UI code:
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>
);
}
Replace (Your Desired Section) and (YOUR HEX CODE COLOR) before pasting into Cursor, Copilot, or ChatGPT.