Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/layout/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { usePathname } from 'next/navigation';
import Image from 'next/image';
import { motion, AnimatePresence } from 'framer-motion';
import { Flame, Github, LogIn, Menu, X, LogOut, Lock } from 'lucide-react';
import logo from '@/assets/logo.webp';
import logo from '@/assets/logo.png';
import { useAuth } from '@/context/AuthContext';
import { NotificationDropdown } from '@/components/NotificationDropdown';
import { ThemeToggle } from '@/components/ui/theme-toggle';
Expand Down Expand Up @@ -62,7 +62,7 @@ export default function Navbar() {
<nav className={styles.navbar} style={{ pointerEvents: isMaintenanceMode ? 'none' : 'auto' }} aria-label="Main navigation">
<Link href="/" className={styles.logo} aria-label="DevPath home">
<div className={styles.logoIcon}>
<Image src={logo} alt="" width={32} height={32} className="rounded-full" aria-hidden="true" />
<Image src={logo} alt="DevPath Logo" width={32} height={32} className="rounded-full" aria-hidden="true" />
</div>
<span className={styles.logoText}>DevPath</span>
</Link>
Expand Down