hatch-surf/app/page.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

16 lines
314 B
TypeScript

import Hero from '@/components/Hero'
import Features from '@/components/Features'
import Why from '@/components/Why'
import CTA from '@/components/CTA'
export default function Home() {
return (
<main className="relative z-10">
<Hero />
<Features />
<Why />
<CTA />
</main>
)
}