/** * Contact Page - Under Construction */ import type { Metadata } from 'next' import { Construction } from 'lucide-react' import Link from 'next/link' // Generate metadata for SEO export async function generateMetadata(): Promise { const siteUrl = process.env.NEXT_PUBLIC_APP_URL || 'https://aispeedrun.vercel.app' return { title: 'Contact - AI Speedrun', description: 'Deze pagina is momenteel in ontwikkeling.', openGraph: { type: 'website', title: 'Contact - AI Speedrun', description: 'Deze pagina is momenteel in ontwikkeling', images: [`${siteUrl}/og-image.png`], siteName: 'AI Speedrun', locale: 'nl_NL', }, alternates: { canonical: `${siteUrl}/contact`, }, } } export default function ContactPage() { return (

Pagina in ontwikkeling

We zijn bezig met het bouwen van deze pagina. Kom binnenkort terug!

Terug naar home
) }