- 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>
16 lines
314 B
TypeScript
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>
|
|
)
|
|
}
|