fix: Fixed navbar not showing where user is.

This commit is contained in:
Afonso Clerigo Mendes de Sousa 2026-01-15 19:50:04 +00:00
parent f8b66db14f
commit 19a0fb4306
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
export default function Page() { export default function MusicPage() {
return ( return (
<div style={{ padding: '20px', textAlign: 'center' }}> <div style={{ padding: '20px', textAlign: 'center' }}>
<h1 style={{ fontSize: '42px' }}>Music Stream</h1> <h1 style={{ fontSize: '42px' }}>Music Stream</h1>

View File

@ -82,7 +82,7 @@ export default function Navbar() {
<Link <Link
href="/music" href="/music"
className={`px-4 py-2 text-sm font-medium transition-colors ${ className={`px-4 py-2 text-sm font-medium transition-colors ${
isActive('/about') isActive('/music')
? 'text-white border-b-2 border-white' ? 'text-white border-b-2 border-white'
: 'text-white/50 hover:text-white' : 'text-white/50 hover:text-white'
}`} }`}