aboutsummaryrefslogtreecommitdiff
path: root/app/menu
diff options
context:
space:
mode:
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>
+ )
+}