diff --git a/components/navbar.tsx b/components/navbar.tsx index ffb1112..1802bbc 100644 --- a/components/navbar.tsx +++ b/components/navbar.tsx @@ -5,105 +5,129 @@ import Link from "next/link"; import { usePathname } from "next/navigation"; import { Button } from "@/components/ui/button"; import { ThemeToggle } from "@/components/theme-toggle"; -import { BookOpen, Menu, X } from "lucide-react"; +import { BookOpen, Menu as MenuIcon, X } from "lucide-react"; +import { HoveredLink, Menu, MenuItem } from "@/components/ui/navbar-menu"; const navItems = [ - { href: "/", label: "Home" }, - // { href: "features", label: "Features" }, - { href: "/learn-more", label: "How it Works" }, - { href: "/FAQ", label: "FAQs" }, - // { href: "/blog", label: "Blog" }, - { href: "/blogs", label: "Blogs" }, + { href: "/web-dev", label: "Web Development" }, + { href: "/interface-design", label: "Interface Design" }, + { href: "/seo", label: "Search Engine Optimization" }, + { href: "/branding", label: "Branding" }, + { href: "/hobby", label: "Hobby" }, + { href: "/individual", label: "Individual" }, + { href: "/team", label: "Team" }, + { href: "/enterprise", label: "Enterprise" }, ]; -const Navbar1 = () => { - const [isMenuOpen, setIsMenuOpen] = useState(false); - const pathname = usePathname(); +// Logo Component +const Logo = () => ( +