hatch-surf/components/CTA.tsx
Chris Anderson 7bbc0ddda3 Rebuild hatch.surf with Next.js
- Recreated old website with Next.js 16 + Tailwind CSS
- Hero section with terminal animation
- Features section (Capture, Inspect, Mock)
- Why section (Compliance, Cost, Speed)
- CTA section
- Header and Footer components
- Dark theme with Inter + JetBrains Mono fonts
- Static export for Docker deployment

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-06-24 10:36:40 +02:00

21 lines
679 B
TypeScript

export default function CTA() {
return (
<section className="py-20 px-6">
<div className="max-w-4xl mx-auto text-center">
<h2 className="text-3xl md:text-4xl font-bold mb-4">
Start inspecting in 30&nbsp;seconds
</h2>
<p className="text-xl text-zinc-400 mb-8">
One binary. Your data stays yours.
</p>
<a
href="https://github.com/elfoundation/hatch"
className="inline-flex items-center justify-center gap-2 px-8 py-4 bg-blue-500 hover:bg-blue-600 text-white font-medium rounded-lg transition-colors text-lg"
>
Get Hatch
</a>
</div>
</section>
)
}