Further updates on 03-11-2025

This commit is contained in:
2025-11-03 13:45:52 +05:30
parent 5481f2e38a
commit 03f6e8432e
26 changed files with 2299 additions and 848 deletions

View File

@ -14,11 +14,11 @@ const Header = () => {
const menuItems = [
{ href: "/", label: "Home" },
{ href: "/about", label: "About" },
{ href: "/teamMember", label: "Faculty Team" },
{ href: "/education-training", label: "Academics" },
{ href: "/research", label: "Research" },
{ href: "/teamMember", label: "Our Team" },
{ href: "/education-training", label: "Academics & Research" },
{ href: "/services", label: "Services" },
{ href: "/events", label: "Events" },
{ href: "/publications", label: "Publications" },
{ href: "/publications", label: "Blogs" },
{ href: "/career", label: "Career" },
{ href: "/contact", label: "Contact Us" },
];
@ -32,7 +32,7 @@ const Header = () => {
<Link href="/" onClick={closeAllMenus} className="flex items-center">
<div className="relative w-60 sm:w-80 h-14 sm:h-18 mr-3 rounded overflow-hidden">
<Image
src="/images/cmclogo1.svg"
src="/images/cmclogo2.svg"
alt="CMC Logo"
fill
className="object-fill"
@ -43,12 +43,12 @@ const Header = () => {
</div>
{/* Desktop Navigation */}
<nav className="hidden lg:flex items-start space-x-8">
<nav className="hidden lg:flex items-center space-x-3 xl:space-x-5">
{menuItems.map((item, idx) => (
<Link
key={idx}
href={item.href}
className="text-blue-900 hover:text-red-600 transition-colors font-medium"
className="text-blue-900 hover:text-red-600 transition-colors font-medium text-sm xl:text-base whitespace-nowrap"
onClick={closeAllMenus}
>
{item.label}
@ -69,8 +69,8 @@ const Header = () => {
priority
/>
</div>
<span className="text-xs sm:text-sm font-semibold text-blue-900 mt-1">
H - 2 0 2 4 - 1 4 3 1
<span className="text-xs sm:text-sm font-semibold text-blue-900 mt-1 whitespace-nowrap">
H-2024-1431
</span>
</div>