remove the space from the top of the navbar

This commit is contained in:
aryabenade
2026-04-02 13:36:46 +05:30
parent 993ccf2c47
commit 173aad723b
2 changed files with 2 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ export function LandingMagicItinerary() {
};
return (
<section className="relative py-20 lg:py-32 overflow-hidden -mt-20 pt-32 z-[100]">
<section className="relative py-20 lg:py-32 overflow-hidden -mt-20 pt-32 z-[49]">
{/* Dynamic Background */}
<div className="absolute inset-0 overflow-hidden pointer-events-none z-[5]">
{/* Background Image as fallback */}

View File

@@ -533,7 +533,7 @@ export default function Navbar({
<>
{/* Desktop Navbar - Enhanced Glassmorphism */}
<motion.nav
className="fixed top-0 left-0 right-0 z-50 hidden lg:block"
className="fixed -top-1 left-0 right-0 z-50 hidden lg:block"
initial={{ y: -100, opacity: 0 }}
animate={{ y: 0, opacity: 1 }}
transition={{ duration: 0.6, ease: [0.25, 0.1, 0.25, 1], delay: 0.2 }}