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