mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-19 05:54:06 +01:00
193 lines
5.9 KiB
TypeScript
193 lines
5.9 KiB
TypeScript
"use client";
|
|
|
|
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 { Button } from "@/components/ui/button";
|
|
import {
|
|
NavigationMenu,
|
|
NavigationMenuContent,
|
|
NavigationMenuItem,
|
|
NavigationMenuLink,
|
|
NavigationMenuList,
|
|
NavigationMenuTrigger,
|
|
navigationMenuTriggerStyle,
|
|
} from "@/components/ui/navigation-menu";
|
|
import { Search } from "lucide-react";
|
|
|
|
const landings = [
|
|
{
|
|
id: 1,
|
|
title: "Landing 01",
|
|
route: "/project-management",
|
|
},
|
|
{
|
|
id: 2,
|
|
title: "Landing 02",
|
|
route: "/crm-landing",
|
|
},
|
|
];
|
|
const ListItem = React.forwardRef<
|
|
React.ElementRef<"a">,
|
|
React.ComponentPropsWithoutRef<"a">
|
|
>(({ className, title, children, ...props }, ref) => {
|
|
return (
|
|
<li>
|
|
<NavigationMenuLink asChild>
|
|
<a
|
|
ref={ref}
|
|
className={cn(
|
|
"block select-none space-y-1 rounded-md p-3 leading-none no-underline outline-none transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground",
|
|
className
|
|
)}
|
|
{...props}
|
|
>
|
|
<div className="text-sm font-medium leading-none">{title}</div>
|
|
<hr />
|
|
<p className="line-clamp-2 text-sm leading-snug text-muted-foreground">
|
|
{children}
|
|
</p>
|
|
</a>
|
|
</NavigationMenuLink>
|
|
</li>
|
|
);
|
|
});
|
|
ListItem.displayName = "ListItem";
|
|
|
|
export function UnsignedNav() {
|
|
const businessComponents = [
|
|
{
|
|
title: "Businesses",
|
|
href: "/landing",
|
|
description: "Raise on B2DVentures",
|
|
},
|
|
];
|
|
|
|
const projectComponents = [
|
|
{
|
|
title: "Projects",
|
|
href: "/landing",
|
|
description: "Raise on B2DVentures",
|
|
},
|
|
];
|
|
|
|
const blogComponents = [
|
|
{
|
|
title: "Blogs",
|
|
href: "/landing",
|
|
description: "Raise on B2DVentures",
|
|
},
|
|
];
|
|
return (
|
|
<header className="sticky top-0 flex flex-wrap w-full bg-card text-sm py-3 border-b-2 border-border z-50">
|
|
<nav className="max-w-[85rem] w-full mx-auto px-4">
|
|
<div className="flex items-center justify-between">
|
|
<div className="flex flex-col">
|
|
<Link
|
|
className="flex-none text-xl font-semibold dark:text-white focus:outline-none focus:opacity-80"
|
|
href="/"
|
|
aria-label="Brand"
|
|
>
|
|
<span className="inline-flex items-center gap-x-2 text-xl font-semibold dark:text-white">
|
|
<Image src="./logo.svg" alt="logo" width={50} height={50} />
|
|
B2DVentures
|
|
</span>
|
|
</Link>
|
|
</div>
|
|
|
|
<div className="flex items-center">
|
|
<NavigationMenu>
|
|
<NavigationMenuList>
|
|
<NavigationMenuItem>
|
|
<NavigationMenuTrigger className="text-base">
|
|
Businesses
|
|
</NavigationMenuTrigger>
|
|
<NavigationMenuContent>
|
|
<ul className="grid w-[400px] ">
|
|
{businessComponents.map((component) => (
|
|
<ListItem
|
|
key={component.title}
|
|
title={component.title}
|
|
href={component.href}
|
|
>
|
|
{component.description}
|
|
</ListItem>
|
|
))}
|
|
</ul>
|
|
</NavigationMenuContent>
|
|
</NavigationMenuItem>
|
|
|
|
<NavigationMenuItem>
|
|
<NavigationMenuTrigger className="text-base font-medium ">
|
|
Projects
|
|
</NavigationMenuTrigger>
|
|
<NavigationMenuContent>
|
|
<ul className="grid w-[400px] ">
|
|
{projectComponents.map((component) => (
|
|
<ListItem
|
|
key={component.title}
|
|
title={component.title}
|
|
href={component.href}
|
|
>
|
|
{component.description}
|
|
</ListItem>
|
|
))}
|
|
</ul>
|
|
</NavigationMenuContent>
|
|
</NavigationMenuItem>
|
|
|
|
<NavigationMenuItem>
|
|
<NavigationMenuTrigger className="text-base">
|
|
Blogs
|
|
</NavigationMenuTrigger>
|
|
<NavigationMenuContent>
|
|
<ul className="grid w-[400px] ">
|
|
{blogComponents.map((component) => (
|
|
<ListItem
|
|
key={component.title}
|
|
title={component.title}
|
|
href={component.href}
|
|
>
|
|
{component.description}
|
|
</ListItem>
|
|
))}
|
|
</ul>
|
|
</NavigationMenuContent>
|
|
</NavigationMenuItem>
|
|
|
|
<NavigationMenuItem>
|
|
<NavigationMenuLink
|
|
className="text-base font-medium"
|
|
href="docs"
|
|
>
|
|
Docs
|
|
</NavigationMenuLink>
|
|
</NavigationMenuItem>
|
|
|
|
<NavigationMenuItem className="pl-5">
|
|
<Search />
|
|
</NavigationMenuItem>
|
|
</NavigationMenuList>
|
|
</NavigationMenu>
|
|
|
|
<div className="flex gap-2 pl-2">
|
|
<ThemeToggle />
|
|
<Separator orientation="vertical" className="mx-3" />
|
|
<Link href="/login">
|
|
<Button variant="secondary" className="border-2 border-border">
|
|
Login
|
|
</Button>
|
|
</Link>
|
|
<Button>Sign up</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
);
|
|
}
|