aboutsummaryrefslogtreecommitdiff
path: root/app/locations
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-10-07 00:01:57 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-10-07 00:01:57 -0400
commit940ebb6c71bd39e87f5b565587406beabefddaad (patch)
treed45b7391e9a2bd83785eb3004cd14928017275d5 /app/locations
parent95280d67a415b31d99ac7e0ebe35c8440847fd90 (diff)
downloadminepot-bnbmc-940ebb6c71bd39e87f5b565587406beabefddaad.tar.gz
minepot-bnbmc-940ebb6c71bd39e87f5b565587406beabefddaad.tar.bz2
minepot-bnbmc-940ebb6c71bd39e87f5b565587406beabefddaad.zip
Initial website
Diffstat (limited to 'app/locations')
-rw-r--r--app/locations/page.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/locations/page.js b/app/locations/page.js
new file mode 100644
index 0000000..11f5486
--- /dev/null
+++ b/app/locations/page.js
@@ -0,0 +1,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>
+ )
+}