first publish
This commit is contained in:
16
src/app/en/page.tsx
Normal file
16
src/app/en/page.tsx
Normal 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} />;
|
||||
}
|
||||
Reference in New Issue
Block a user