import React from "react"; import { Download } from "lucide-react"; import { notFound } from "next/navigation"; import { LegalLayout } from "@/components/LegalLayout"; interface PageProps { params: Promise<{ locale: string }>; } export default async function Page({ params }: PageProps) { const { locale } = await params; let Content: React.ComponentType; try { const mdx = await import(`@/content/${locale}/avb.mdx`); Content = mdx.default; } catch { notFound(); } const downloadButton = ( Als PDF herunterladen ); return ( ); }