summaryrefslogtreecommitdiff
path: root/app/routes/home.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/routes/home.tsx')
-rw-r--r--app/routes/home.tsx8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/routes/home.tsx b/app/routes/home.tsx
new file mode 100644
index 0000000..03ae39a
--- /dev/null
+++ b/app/routes/home.tsx
@@ -0,0 +1,8 @@
+export default function Home() {
+ return (
+ <main className="container mx-auto px-4 py-16 text-center">
+ <h1 className="text-4xl font-bold tracking-tight">whois.band</h1>
+ <p className="mt-4 text-gray-400">Band identification service. Coming soon.</p>
+ </main>
+ );
+}