import type { Metadata } from "next"; import HomePageServer from "../_ui/HomePageServer"; import { getLanguageAlternates, toAbsoluteUrl } from "@/lib/seo"; export async function generateMetadata({ params, }: { params: Promise<{ locale: string }>; }): Promise { const { locale } = await params; const languages = getLanguageAlternates({ pathWithoutLocale: "" }); return { alternates: { canonical: toAbsoluteUrl(`/${locale}`), languages, }, }; } export default async function Page({ params, }: { params: Promise<{ locale: string }>; }) { const { locale } = await params; return ; }