AniX/app/home/[slug]/page.js

26 lines
642 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { IndexCategoryPage } from "@/app/pages/IndexCategory";
const SectionTitleMapping = {
last: "Последние релизы",
finished: "Завершенные релизы",
ongoing: "В эфире",
announce: "Анонсированные релизы",
};
export async function generateMetadata({ params }) {
return {
title: SectionTitleMapping[params.slug],
};
}
export default function Index({ params }) {
const metadata = {
title: "AniX | " + SectionTitleMapping[params.slug],
};
return (
<IndexCategoryPage
slug={params.slug}
SectionTitleMapping={SectionTitleMapping}
/>
);
}