feat(seo): add localized route metadata
This commit is contained in:
@@ -1,4 +1,18 @@
|
||||
import { ReferencesDetailContent } from "@/components/references-detail-content";
|
||||
import { getStaticPageMetadata } from "@/lib/seo";
|
||||
|
||||
export async function generateMetadata({
|
||||
params,
|
||||
}: {
|
||||
params: Promise<{ locale: string }>;
|
||||
}) {
|
||||
const { locale } = await params;
|
||||
return getStaticPageMetadata({
|
||||
locale,
|
||||
page: "references",
|
||||
path: "/about/references",
|
||||
});
|
||||
}
|
||||
|
||||
export default function AboutReferencesPage() {
|
||||
return <ReferencesDetailContent />;
|
||||
|
||||
Reference in New Issue
Block a user