We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e06067 commit a84a251Copy full SHA for a84a251
1 file changed
src/components/Navbar/Navbar.tsx
@@ -28,6 +28,7 @@ export default function Navbar() {
28
29
return (
30
<>
31
+ {/* Desktop Navbar */}
32
<div
33
className={`transition-all duration-100 hidden md:block ${
34
isScrolledToTop ? 'text-white' : 'text-black bg-white shadow-2xl'
@@ -66,6 +67,8 @@ export default function Navbar() {
66
67
</nav>
68
</header>
69
</div>
70
+
71
+ {/* Mobile Navbar */}
72
73
className={`px-6 py-2 flex justify-between md:hidden ${
74
isScrolledToTop ? '' : 'bg-white shadow-2xl'
0 commit comments