aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Navbar.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx
index 624f9f1..4246508 100644
--- a/src/components/Navbar.tsx
+++ b/src/components/Navbar.tsx
@@ -11,7 +11,7 @@ export default function Navbar() {
];
return (
- <nav className="sticky top-0 backdrop-blur flex items-center">
+ <nav className="sticky top-0 z-50 backdrop-blur flex items-center">
<div className="max-w-2xl mx-auto flex px-4 py-4 text-sm">
<div className="flex gap-6 items-center">
{navItems.map(({ label, href }) => (
@@ -22,4 +22,4 @@ export default function Navbar() {
</div>
</nav>
);
-} \ No newline at end of file
+}