From 357b57dfb2e610cf7b5e735259dbf8debdf4f101 Mon Sep 17 00:00:00 2001 From: nitin mohan Date: Mon, 6 Jul 2026 16:57:43 +0530 Subject: [PATCH] improved header background colour and navbar icons --- components/navbar.tsx | 38 +++++++++++++++++++++----------------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/components/navbar.tsx b/components/navbar.tsx index e0be648..5526360 100644 --- a/components/navbar.tsx +++ b/components/navbar.tsx @@ -10,8 +10,8 @@ import { Moon, House, GraduationCap, - MessageSquare, - Info, + Mail, + BookOpen, Search, } from "lucide-react"; import { motion, AnimatePresence } from "framer-motion"; @@ -31,15 +31,15 @@ const navLinks = [ href: "/#Universities", icon: GraduationCap, }, - { - label: "About", - href: "/about", - icon: Info, - }, { label: "Contact", href: "/#Contact", - icon: MessageSquare, + icon: Mail, + }, + { + label: "About", + href: "/about", + icon: BookOpen, }, ]; @@ -168,7 +168,7 @@ export default function Navbar() {
@@ -299,15 +299,19 @@ export default function Navbar() { className="group relative flex flex-col items-center justify-center gap-1.5 outline-none" > - {/* Active Indicator Line (Facebook Style) */} + {/* Active Indicator Line (Premium Clean Style) */} {isActive && ( {currentTheme !== "dark" ? ( Theme {mounted && ( -
+