diff --git a/src/components/ui/NavbarCentered.tsx b/src/components/ui/NavbarCentered.tsx index 26cde44..87db45b 100644 --- a/src/components/ui/NavbarCentered.tsx +++ b/src/components/ui/NavbarCentered.tsx @@ -1,5 +1,6 @@ import { useState, useEffect, useRef } from "react"; +import { Plus, ArrowRight } from "lucide-react"; import { Plus, ArrowRight } from "lucide-react"; import { cls } from "@/lib/utils"; import Button from "@/components/ui/Button"; @@ -89,46 +90,46 @@ const NavbarCentered = ({ logo, navItems, ctaButton }: NavbarCenteredProps) => { - {menuOpen && ( -
-
-

Menu

- -
- -
- {navItems.map((item, index) => ( -
- handleNavClick(e, item.href, () => setMenuOpen(false))} - className="flex items-center justify-between py-2 text-base font-medium text-foreground" - > - {item.name} - - - {index < navItems.length - 1 && ( -
- )} -
- ))} -
- -
-
-
+
+
+

Menu

+ +
+ +
+ {navItems.map((item, index) => ( +
+ handleNavClick(e, item.href, () => setMenuOpen(false))} + className="flex items-center justify-between py-2 text-base font-medium text-foreground" + > + {item.name} + + + {index < navItems.length - 1 && ( +
+ )} +
+ ))} +
+ +
+
+
); };