blob: 11f54869856387e6c11618b3b9f68174d7a4f366 (
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 Locations() {
return (
<main>
<div className="bg-zinc-800">
<Navbar/>
<div className="text-center pt-5 space-y-3">
<h1 className="text-6xl font-bold">Locations</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>
)
}
|