25 lines
766 B
TypeScript
25 lines
766 B
TypeScript
import type { Metadata } from "next";
|
|
import HeroSection from "@/components/HeroSection";
|
|
import { getDictionary, isLocale, type Locale } from "@/lib/i18n";
|
|
import { buildPageMetadata } from "@/lib/metadata";
|
|
import { notFound } from "next/navigation";
|
|
|
|
export function generateMetadata({ params }: { params: { locale: string } }): Metadata {
|
|
if (!isLocale(params.locale)) {
|
|
return {};
|
|
}
|
|
|
|
return buildPageMetadata(params.locale, "home");
|
|
}
|
|
|
|
export default function HomePage({ params }: { params: { locale: string } }) {
|
|
if (!isLocale(params.locale)) {
|
|
notFound();
|
|
}
|
|
|
|
const locale = params.locale as Locale;
|
|
const dictionary = getDictionary(locale);
|
|
|
|
return <HeroSection locale={locale} home={dictionary.home} common={dictionary.common} />;
|
|
}
|