summaryrefslogtreecommitdiff
path: root/app/root.tsx
diff options
context:
space:
mode:
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 />
</>