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 { const { index } = await loadContactIndexProps(); return getSeoMetadata(index, parent); } export default async function Page() { const props = await loadContactIndexProps(); return ; }