mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-03 21:15:35 +05:00
11 lines
202 B
TypeScript
11 lines
202 B
TypeScript
export const metadata = {
|
|
title: "Меню",
|
|
};
|
|
|
|
import { MenuPage } from "#/pages/MobileMenuPage";
|
|
|
|
export const dynamic = "force-static";
|
|
|
|
export default function Index() {
|
|
return <MenuPage />;
|
|
}
|