first commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
export default function Head() {
|
||||
return (
|
||||
<>
|
||||
<title>Menu</title>
|
||||
<meta content="width=device-width, initial-scale=1" name="viewport" />
|
||||
<meta name="description" content="Generated by create next app" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
</>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
import Header from "../components/Header";
|
||||
import Menu from "../components/Menu";
|
||||
import RestaurantNavBar from "../components/RestaurantNavBar";
|
||||
|
||||
export default function RestaurantMenu() {
|
||||
return (
|
||||
<div className="bg-white w-[100%] rounded p-3 shadow">
|
||||
<RestaurantNavBar />
|
||||
<Menu />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user