hatch-surf/app/page.tsx
Chris Anderson 6e51790cfa feat: landing page redesign - Phase 1 & 2
- Hero: gradient text, enhanced CTAs, improved terminal styling
- Features: color-coded cards (blue/purple/cyan) with hover effects
- Why: card grid layout with color-coded left borders
- CTA: stronger visual hierarchy with gradient text
- Accessibility: skip-to-content link, main landmark
- Remove duplicate main tag from page.tsx

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-06-24 17:16:00 +02:00

16 lines
280 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 (
<>
<Hero />
<Features />
<Why />
<CTA />
</>
)
}