import type { Metadata } from "next"; import { HomeBody } from "@/components/pages/HomeBody"; import { homeEn } from "@/content/en/home"; import { alternatesFor } from "@/lib/i18n"; import { rootCopy } from "@/lib/metadata"; /* Title falls back to the layout default („Anelia Wolf – Keynote Speaker, Trainer & Coach“). */ export const metadata: Metadata = { description: rootCopy.en.description, alternates: alternatesFor("en", "home"), }; /** /en/ – same tree as the German start page, English copy. */ export default function EnHome() { return ; }