summaryrefslogtreecommitdiff
path: root/app/root.tsx
diff options
context:
space:
mode:
authoryyamashita <yyamashita@mosquit.one>2026-05-15 00:16:27 +0900
committeryyamashita <yyamashita@mosquit.one>2026-05-15 00:16:27 +0900
commitb29876cf6f865182ef6958aaf63d91d43dd08d55 (patch)
tree381808b8593febbde5abdcb320d7eba8915faa65 /app/root.tsx
parent1a8a159a71fd018bab0e14d9df952c53ae5ea062 (diff)
Fix nav classes, add detail APIs, add update-band-info skill
- Fix nav: apply .nav class and .nav-brand to logo (styles were not rendering) - Add GET+PATCH /api/bands/:uuid and /api/artists/:uuid endpoints - PATCH supports append_links / append_members for non-destructive updates - Add /update-band-info skill: fetch SNS profiles and update band description/members Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'app/root.tsx')
-rw-r--r--app/root.tsx10
1 files changed, 4 insertions, 6 deletions
diff --git a/app/root.tsx b/app/root.tsx
index e30abe8..15cc68b 100644
--- a/app/root.tsx
+++ b/app/root.tsx
@@ -46,12 +46,10 @@ export function Layout({ children }: { children: React.ReactNode }) {
export default function App() {
return (
<>
- <nav>
- <div>
- <Link to="/" className="logo">whois.band</Link>
- <Link to="/bands">Bands</Link>
- <Link to="/artists">Artists</Link>
- </div>
+ <nav className="nav">
+ <Link to="/" className="nav-brand">whois.band</Link>
+ <Link to="/bands">Bands</Link>
+ <Link to="/artists">Artists</Link>
</nav>
<Outlet />
</>