AniX/app/menu/page.tsx

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 />;
}