summaryrefslogtreecommitdiff
path: root/app/routes
diff options
context:
space:
mode:
authoryyamashita <yyamashita@mosquit.one>2026-05-08 23:37:51 +0900
committeryyamashita <yyamashita@mosquit.one>2026-05-08 23:37:51 +0900
commitd4d104cd604741ac0c308efe5050a0eec69bb389 (patch)
tree4d9becba79e83e02ae93695f71e7fe4c908803e0 /app/routes
Initial scaffold: React Router v7 + SQLite + Tailwind CSS v4
Diffstat (limited to 'app/routes')
-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>
+ );
+}