From 61706a5009a15cfe01b748975063a390f6ca8391 Mon Sep 17 00:00:00 2001 From: nitin mohan Date: Mon, 6 Jul 2026 23:02:02 +0530 Subject: [PATCH] removed about section from navbar ,added dashboar --- components/navbar.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/components/navbar.tsx b/components/navbar.tsx index 770ccd6..3b029d7 100644 --- a/components/navbar.tsx +++ b/components/navbar.tsx @@ -11,7 +11,7 @@ import { House, GraduationCap, Mail, - BookOpen, + LayoutDashboard, Search, } from "lucide-react"; import { motion, AnimatePresence } from "framer-motion"; @@ -31,16 +31,16 @@ const navLinks = [ href: "/#Universities", icon: GraduationCap, }, + { + label: "Dashboard", + href: "/dashboard", + icon: LayoutDashboard, + }, { label: "Contact", href: "/#Contact", icon: Mail, }, - { - label: "About", - href: "/about", - icon: BookOpen, - }, ]; export default function Navbar() {