aboutsummaryrefslogtreecommitdiff
path: root/app/menu
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-10-07 00:01:57 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-10-07 00:01:57 -0400
commit940ebb6c71bd39e87f5b565587406beabefddaad (patch)
treed45b7391e9a2bd83785eb3004cd14928017275d5 /app/menu
parent95280d67a415b31d99ac7e0ebe35c8440847fd90 (diff)
downloadminepot-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.js33
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>
+ )
+}