@@ -27,11 +27,11 @@ const Navbar = ({
2727
2828 return (
2929 < header
30- className = { `backdrop-blur-sm sticky top-0 z-30 transition-colors border-b ${ isScrolled ? 'border-gray-700/50' : 'border-transparent' } relative` }
30+ className = { `bg-black/20 backdrop-blur-lg sticky top-0 z-30 transition-colors border-b ${ isScrolled ? 'border-gray-700/50' : 'border-transparent' } relative` }
3131 >
3232 < button
3333 onClick = { toggleSidebar }
34- className = "absolute top-1/2 -translate-y-1/2 left-4 text-red-500 focus:outline-none hidden md:block"
34+ className = "absolute top-1/2 -translate-y-1/2 left-4 text-red-600 focus:outline-none hidden md:block"
3535 >
3636 < SidebarIcon size = { 24 } />
3737 </ button >
@@ -46,7 +46,7 @@ const Navbar = ({
4646 < Link to = "/" className = "flex items-center space-x-2" >
4747 < Fez />
4848 < span className = "text-2xl tracking-tight font-mono" >
49- fez< span className = "text-primary-400 " > codex</ span >
49+ fez< span className = "text-red-600 " > codex</ span >
5050 </ span >
5151 </ Link >
5252 </ div >
@@ -55,7 +55,7 @@ const Navbar = ({
5555 < Link to = "/" className = "flex items-center space-x-2" >
5656 < Fez />
5757 < span className = "text-2xl tracking-tight font-mono" >
58- fez< span className = "text-primary-400 " > codex</ span >
58+ fez< span className = "text-red-600 " > codex</ span >
5959 </ span >
6060 </ Link >
6161 ) }
@@ -66,21 +66,21 @@ const Navbar = ({
6666 className = "text-lg font-normal tracking-tight"
6767 style = { { fontFamily : "'Arvo', 'Playfair Display', serif" } }
6868 >
69- The Fez of < span className = "text-primary-400 " > Code</ span >
69+ The Fez of < span className = "text-red-600 " > Code</ span >
7070 </ span >
7171 </ div >
7272 ) }
7373 < div className = "flex items-center space-x-3 md:space-x-6" >
7474 < Link
7575 to = "/about"
76- className = "flex items-center space-x-1 text-gray-300 hover:text- white hover:bg-gray -800 px-2 py-2 rounded-md transition-colors"
76+ className = "flex items-center space-x-1 text-white hover:bg-red -800 px-2 py-2 rounded-md transition-colors"
7777 >
7878 < UserIcon size = { 24 } />
7979 < span className = "md:hidden lg:inline" > About</ span >
8080 </ Link >
8181 < button
8282 onClick = { toggleSearch }
83- className = "text-gray-300 hover:text- white hover:bg-gray -800 px-2 py-2 rounded-md transition-colors"
83+ className = "text-white hover:bg-red -800 px-2 py-2 rounded-md transition-colors"
8484 aria-label = "Toggle Search"
8585 >
8686 < MagnifyingGlassIcon
0 commit comments