diff --git a/src/components/ui/NavbarCentered.tsx b/src/components/ui/NavbarCentered.tsx index 830f7a3..e6e68b7 100644 --- a/src/components/ui/NavbarCentered.tsx +++ b/src/components/ui/NavbarCentered.tsx @@ -1,5 +1,5 @@ import { useState, useEffect, useRef } from "react"; -import { motion, AnimatePresence } from "motion/react"; + import { Plus, ArrowRight } from "lucide-react"; import { cls } from "@/lib/utils"; import Button from "@/components/ui/Button"; @@ -51,8 +51,8 @@ const NavbarCentered = ({ logo, navItems, ctaButton }: NavbarCenteredProps) => { <> @@ -89,15 +89,11 @@ const NavbarCentered = ({ logo, navItems, ctaButton }: NavbarCenteredProps) => { - - {menuOpen && ( - Menu @@ -131,9 +127,8 @@ const NavbarCentered = ({ logo, navItems, ctaButton }: NavbarCenteredProps) => { - + )} - > ); };
Menu