29 lines
667 B
TypeScript
29 lines
667 B
TypeScript
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<Metadata> {
|
|
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 <HomePageServer locale={locale} />;
|
|
}
|
|
|