feat: mobile menu page instead of dropdown for authorized user

This commit is contained in:
Kentai Radiquum 2024-09-21 01:54:02 +05:00
parent 3ab5954197
commit 75eb4a3170
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
5 changed files with 327 additions and 180 deletions

9
app/menu/page.tsx Normal file
View file

@ -0,0 +1,9 @@
export const metadata = {
title: "Меню",
};
import { MenuPage } from "#/pages/MobileMenuPage";
export default function Index() {
return <MenuPage />;
}