diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2023-10-07 00:01:57 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2023-10-07 00:01:57 -0400 |
| commit | 940ebb6c71bd39e87f5b565587406beabefddaad (patch) | |
| tree | d45b7391e9a2bd83785eb3004cd14928017275d5 /app/menu | |
| parent | 95280d67a415b31d99ac7e0ebe35c8440847fd90 (diff) | |
| download | minepot-bnbmc-940ebb6c71bd39e87f5b565587406beabefddaad.tar.gz minepot-bnbmc-940ebb6c71bd39e87f5b565587406beabefddaad.tar.bz2 minepot-bnbmc-940ebb6c71bd39e87f5b565587406beabefddaad.zip | |
Initial website
Diffstat (limited to 'app/menu')
| -rw-r--r-- | app/menu/page.js | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app/menu/page.js b/app/menu/page.js new file mode 100644 index 0000000..250a906 --- /dev/null +++ b/app/menu/page.js @@ -0,0 +1,33 @@ +import Navbar from "@/app/components/Navbar"; + +export default function Menu() { + return ( + <main> + <div className="bg-zinc-800"> + <Navbar/> + <div className="text-center pt-5 space-y-3"> + <h1 className="text-6xl font-bold">Menu</h1> + <h2 className="text-3xl font-light">(insert description, though might get removed)</h2> + </div> + <div className="px-20"> + <p>Menu is currently being worked on</p> + { + /* + <h1 className="text-5xl font-medium">Main Course</h1> + <ul> + <li>Steak - $5</li> + <li>Potato - $5</li> + <li>Potato - $5</li> + <li>Potato - $5</li> + </ul> + <h1 className="text-5xl font-medium">Special</h1> + <ul> + <li>MinePot Soup - $20</li> + </ul> + * */ + } + </div> + </div> + </main> + ) +} |
