import { VehicleDetail } from '@/components/vehicles/VehicleDetail'; export default async function FahrzeugDetailPage({ params, }: { params: Promise<{ locale: string; id: string }>; }) { const { id } = await params; return (
); }