'use client'; interface MainContentProps { t: { hero: { title: string; subtitle: string; description: string; cta: string; learn: string; }; features: { title: string; performance: string; performanceDesc: string; security: string; securityDesc: string; support: string; supportDesc: string; }; }; isLoaded: boolean; } export default function MainContent({ t, isLoaded }: MainContentProps) { return (
{/* Left Content - Larger Column */}
{t.hero.subtitle}

{t.hero.title}

{t.hero.description}

{/* Right Content - Smaller Column with Complex Visual Elements */}
{/* Complex Layered Cards */}
99.9% Uptime
24/7
Monitoring
Global CDN
150+
Locations
Enterprise Grade
SSL
Security
{/* Features Section - Dense Information Layout */}

{t.features.title}

{[ { title: t.features.performance, desc: t.features.performanceDesc, color: 'from-red-500 to-orange-500', }, { title: t.features.security, desc: t.features.securityDesc, color: 'from-green-500 to-emerald-500', }, { title: t.features.support, desc: t.features.supportDesc, color: 'from-blue-500 to-purple-500', }, ].map((feature, index) => (

{feature.title}

{feature.desc}

))}
); }