import React from "react"; import { NavLink, Link } from "react-router-dom"; import { ScanFace, UserPlus, LayoutDashboard, House, BookOpen } from "lucide-react"; export default function Header() { const linkCls = ({ isActive }) => `px-3 py-2 text-sm font-semibold rounded-md transition-all duration-150 ${ isActive ? "text-cyan_glow bg-cyan_glow/10 border border-cyan_glow/30" : "text-white/70 hover:text-white hover:bg-white/5" }`; return (
FaceGuard
BIOMETRIC ATTENDANCE
); }