diff --git a/comps/navbar.tsx b/comps/navbar.tsx index cbf282d..be2c47c 100644 --- a/comps/navbar.tsx +++ b/comps/navbar.tsx @@ -1,97 +1,76 @@ -"use client" -import { NavigationMenuLink, NavigationMenuItem, NavigationMenuList, NavigationMenu } from "@/components/ui/navigation-menu" -import Image from 'next/image' -import { Button } from "@/components/ui/button" -import { Input } from "@/components/ui/input" -import { Label } from "@/components/ui/label" -import {Sheet, - SheetClose, - SheetContent, - SheetDescription, - SheetFooter, - SheetHeader, - SheetTitle, - SheetTrigger,} from "@/components/ui/sheet.tsx" +"use client"; +import { + NavigationMenuLink, + NavigationMenuItem, + NavigationMenuList, + NavigationMenu, +} from "@/components/ui/navigation-menu"; +import Image from "next/image"; +import { Button } from "@/components/ui/button"; +import { Sheet, SheetContent, SheetTrigger } from "@/components/ui/sheet.tsx"; +import Link from "next/link"; + export default function Navbar() { + const NavLinks = [ + { + name: "About", + href: "about", + }, + { + name: "Programs", + href: "programs", + }, + { + name: logo, + href: "/", + }, + { + name: "Issues", + href: "issues", + }, + { + name: "Join Us", + href: "join", + }, + ]; + return (
- - - - - - About - - - - - Programs - - - - - - logo - - - - - Issues - - - - - - Join Us - - - - - - -{/* mobile navbar */} - - - - - - - - - Menu - - - - - - - - - - - - - + + + {NavLinks.map((link, index) => ( + + + + {link.name} + + + + ))} + {/* mobile navbar */} + + + + + + + + {NavLinks.map((link, index) => ( +
+ + + +
+ ))} +
+
+
+
+
+
- ) + ); }