import * as React from "react"; import Link from "next/link"; import Image from "next/image"; import { cn } from "@/lib/utils"; import { Separator } from "@/components/ui/separator"; import { ThemeToggle } from "@/components/theme-toggle"; import { NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, } from "@/components/ui/navigation-menu"; import { SearchBar } from "./serchBar"; import { ProfileBar } from "./profileBar"; const ListItem = React.forwardRef, React.ComponentPropsWithoutRef<"a">>( ({ className, title, children, ...props }, ref) => { return (
  • {title}

    {children}

  • ); } ); ListItem.displayName = "ListItem"; export function NavigationBar() { const businessComponents = [ { title: "Business", href: "/business/apply", description: "Apply to raise on on B2DVentures", }, ]; const projectComponents = [ { title: "Projects", href: "/landing", description: "Raise on B2DVentures", }, ]; const blogComponents = [ { title: "Blogs", href: "/landing", description: "Raise on B2DVentures", }, ]; return (
    ); }