diff options
| author | yyamashita <yyamashita@mosquit.one> | 2026-05-15 00:08:25 +0900 |
|---|---|---|
| committer | yyamashita <yyamashita@mosquit.one> | 2026-05-15 00:08:25 +0900 |
| commit | 1a8a159a71fd018bab0e14d9df952c53ae5ea062 (patch) | |
| tree | e49843e7b1178e063b7f7fd3ad05601affdbfd28 /app/root.tsx | |
| parent | 83524404e891cf256e191677e1150e853e185155 (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/root.tsx')
| -rw-r--r-- | app/root.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/app/root.tsx b/app/root.tsx index 242ffe2..e30abe8 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -49,9 +49,8 @@ export default function App() { <nav> <div> <Link to="/" className="logo">whois.band</Link> - <Link to="/bands/new">+ Band</Link> - <Link to="/artists/new">+ Artist</Link> - <Link to="/lists">Lists</Link> + <Link to="/bands">Bands</Link> + <Link to="/artists">Artists</Link> </div> </nav> <Outlet /> |
