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