/** * Homepage - AI Speedrun v2.1 * * Vereenvoudigde landing page met: * - Hero quote (Jensen Huang) * - Statement section (Software on Demand concept) * - Timeline (coming in E1.S3) * - CTA naar /login * * Performance optimizations: * - Critical content (Hero, Statement) loads immediately * - Timeline will be lazy loaded when added */ import type { Metadata } from 'next' import { Suspense } from 'react' import { getContent } from '@/lib/content/loader' import type { MetadataContent } from '@/content/schemas/manifesto' import { HeroSectionClient } from './components/hero-section-client' import { BuildTimeline } from './components/build-timeline' import { WhyMe } from '@/components/ui/why-me' import { AuthCodeHandler } from './components/auth-code-handler' // Generate metadata for SEO export async function generateMetadata(): Promise { const metadataContent = await getContent('nl', 'metadata') const meta = metadataContent.manifesto const siteUrl = process.env.NEXT_PUBLIC_APP_URL || 'https://aispeedrun.vercel.app' const ogImageUrl = `${siteUrl}${meta.ogImage}` return { title: meta.title, description: meta.description, keywords: meta.keywords, authors: [{ name: 'Colin van der Heijden' }], openGraph: { type: 'article', title: meta.ogTitle, description: meta.ogDescription, images: [ { url: ogImageUrl, width: 1200, height: 630, alt: meta.ogTitle, }, ], siteName: 'AI Speedrun', locale: 'nl_NL', }, twitter: { card: 'summary_large_image', title: meta.ogTitle, description: meta.ogDescription, images: [ogImageUrl], }, alternates: { canonical: siteUrl, }, robots: { index: true, follow: true, googleBot: { index: true, follow: true, 'max-video-preview': -1, 'max-image-preview': 'large', 'max-snippet': -1, }, }, } } // Content interfaces interface HeroContent { title: { main: string accent: string } subtitle: string punchline: { question: string answer: string } callToAction: { primary: { text: string href: string } secondary: { text: string href: string } } backgroundImage: string } interface StatementContent { hero: HeroContent } interface Feature { title: string description: string time?: string traditional?: string icon: "Rocket" | "Database" | "Sparkles" | "Palette" | "Calendar" | "Layout" | "Users" | "Smartphone" | "FileText" | "Brain" | "Tags" | "Target" | "HelpCircle" | "Zap" | "Eye" } interface WeekData { weekNumber: number title: string status: "completed" | "in_progress" | "planned" description: string features: Feature[] metrics: { hours: string cost: string linesOfCode: string } achievements: string[] } interface TimelineContent { heading: string description: string weeks: WeekData[] } export default async function HomePage() { // Load content const manifestoContent = await getContent('nl', 'manifesto') const timelineContent = await getContent('nl', 'timeline') const heroContent = manifestoContent.hero return ( <> {/* Handle auth codes that Supabase redirects to home page */} {/* Hero Section */} {heroContent.title.main}{' '} {heroContent.title.accent} } subtitle={heroContent.subtitle} punchline={ <> {heroContent.punchline.question}

{heroContent.punchline.answer} } callToAction={heroContent.callToAction.primary} secondaryCallToAction={heroContent.callToAction.secondary} backgroundImage={heroContent.backgroundImage} /> {/* Statement Section - Software on Demand */}

Software on Demand: Van €100k naar €200

Het probleem: Enterprise software kost €100.000+ per jaar en implementaties duren 12-24 maanden. Je betaalt voor potentieel, niet voor werkelijke waarde. Vendors optimaliseren voor meer seats, meer modules, meer lock-in.

De oplossing: AI-powered development verkort dit naar 4 weken en €200 totale kosten. Niet omdat AI magisch is, maar omdat je 80% van de standaard-code niet meer hoeft te schrijven. De kostenbasis verschuift compleet - geen armies van consultants, geen jarenlange developmenttrajecten.

Het bewijs: Dit EPD prototype is het levende bewijs. Gebouwd in 4 weken, volledig transparant, build in public. Infrastructuur die schaalt met gebruik, AI die de heavy lifting doet. En het belangrijkste: je bezit de code, je controleert de roadmap.

Volg de voortgang hieronder en zie hoe elk onderdeel tot leven komt →

{/* Timeline Section */}
{/* About Me Section */} {/* CTA Section */}

Klaar om het prototype te proberen?

Login om toegang te krijgen tot de EPD applicatie en zie AI-gestuurde workflows in actie

) }