summaryrefslogtreecommitdiff
path: root/app/routes.ts
diff options
context:
space:
mode:
authoryyamashita <yyamashita@mosquit.one>2026-05-15 00:08:25 +0900
committeryyamashita <yyamashita@mosquit.one>2026-05-15 00:08:25 +0900
commit1a8a159a71fd018bab0e14d9df952c53ae5ea062 (patch)
treee49843e7b1178e063b7f7fd3ad05601affdbfd28 /app/routes.ts
parent83524404e891cf256e191677e1150e853e185155 (diff)
Add bands/artists index pages and redirect top page
- / now redirects to /bands - /bands shows band list with "+ Band" link - /artists shows artist list with "+ Artist" link - Nav simplified to Bands / Artists only Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'app/routes.ts')
-rw-r--r--app/routes.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/routes.ts b/app/routes.ts
index b02a70a..0a2c028 100644
--- a/app/routes.ts
+++ b/app/routes.ts
@@ -6,11 +6,13 @@ export default [
route("/api/artists", "routes/api-artists.tsx"),
route("/api/export", "routes/api-export.tsx"),
route("/api/import", "routes/api-import.tsx"),
+ route("/bands", "routes/band-index.tsx"),
route("/bands/new", "routes/band-new.tsx"),
route("/bands/of/:uuid", "routes/band-by-uuid.tsx"),
route("/bands/named/:slug", "routes/band-by-slug.tsx"),
route("/bands/of/:uuid/edit", "routes/band-edit.tsx"),
route("/bands/of/:uuid/history", "routes/band-history.tsx"),
+ route("/artists", "routes/artist-index.tsx"),
route("/artists/new", "routes/artist-new.tsx"),
route("/artists/of/:uuid", "routes/artist-by-uuid.tsx"),
route("/artists/named/:slug", "routes/artist-by-slug.tsx"),