aboutsummaryrefslogtreecommitdiff
path: root/app/review/page.js
blob: 8b3ec91416ac85c7d5beaf31b3ceda55b0e3801d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Navbar from "@/app/components/Navbar";

export default function Review() {
    return (
        <main>
            <div className="bg-zinc-800">
                <Navbar/>
                <div className="text-center pt-5 space-y-3">
                    <h1 className="text-6xl font-bold">Review</h1>
                    <h2 className="text-3xl font-light">(insert description, though might get removed)</h2>
                </div>
                <div className="px-20">
                    <p>Soon:tm:</p>
                </div>
            </div>
        </main>
    )
}