aboutsummaryrefslogtreecommitdiff
path: root/app/menu/page.js
blob: 250a90631508976cab6f152d2c08f35eaccae75d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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>
    )
}