diff --git a/src/components/layout/Navbar.tsx b/src/components/layout/Navbar.tsx index 3108e07f..c9ce3830 100644 --- a/src/components/layout/Navbar.tsx +++ b/src/components/layout/Navbar.tsx @@ -8,8 +8,8 @@ function Logo() { return ( - - + + ); } @@ -19,23 +19,25 @@ export function Navbar() { const location = useLocation(); return ( - + - Snigdha OS + + Snigdha OS + - + {navigation.map((item) => ( setIsOpen(!isOpen)} - className="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100" + className="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 transition-all duration-300" > {isOpen ? : } @@ -59,14 +61,18 @@ export function Navbar() { {isOpen && ( - + {navigation.map((item) => ( ); -} \ No newline at end of file +}