mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-18 21:44:06 +01:00
refactor: remove unuse nav link
This commit is contained in:
parent
71d49ffd70
commit
7cacc78412
@ -57,13 +57,6 @@ export function NavigationBar() {
|
||||
},
|
||||
];
|
||||
|
||||
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-screen-xl w-full mx-auto px-4">
|
||||
@ -110,25 +103,6 @@ export function NavigationBar() {
|
||||
</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 flex">
|
||||
<SearchBar />
|
||||
</NavigationMenuItem>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user