first publish

This commit is contained in:
2026-09-06 17:21:52 +02:00
commit b8e41b4d55
147 changed files with 19367 additions and 0 deletions

16
src/app/en/page.tsx Normal file
View File

@@ -0,0 +1,16 @@
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 <HomeBody lang="en" content={homeEn} />;
}