mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-03 21:15:35 +05:00
11 lines
207 B
TypeScript
11 lines
207 B
TypeScript
export const metadata = {
|
|
title: "История",
|
|
};
|
|
|
|
import { HistoryPage } from "#/pages/History";
|
|
|
|
export const dynamic = "force-static";
|
|
|
|
export default function Index() {
|
|
return <HistoryPage />;
|
|
}
|