add: bottom nav bar
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
import BottomNavBar from "@/components/navigation/BottomNavBar";
|
||||
import { ReactQueryProvider } from "@/components/providers/ReactQueryProvider";
|
||||
|
||||
export const metadata = {
|
||||
title: 'Menu',
|
||||
}
|
||||
|
||||
export default function MenuLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
|
||||
return (
|
||||
<ReactQueryProvider>
|
||||
<main className="h-full pb-0">
|
||||
{children}
|
||||
</main>
|
||||
<BottomNavBar />
|
||||
</ReactQueryProvider>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
'use client';
|
||||
|
||||
export default function MenuIndex() {
|
||||
|
||||
return (
|
||||
<>
|
||||
Menu
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user