Files
neuf-www/web/src/app/kontakt/page.tsx
T

20 lines
535 B
TypeScript

import { Metadata, ResolvingMetadata } from "next";
import {
ContactIndexView,
loadContactIndexProps,
} from "@/components/contact/ContactIndexView";
import { getSeoMetadata } from "@/lib/seo";
export async function generateMetadata(
_: unknown,
parent: ResolvingMetadata
): Promise<Metadata | null> {
const { index } = await loadContactIndexProps();
return getSeoMetadata(index, parent);
}
export default async function Page() {
const props = await loadContactIndexProps();
return <ContactIndexView {...props} />;
}