// assets/js/components/Navbar.js const Navbar = ({ user, onLogout, userType = "user" }) => { const colorMap = { admin: "from-red-500 to-red-600", manager: "from-yellow-500 to-yellow-600", user: "from-blue-500 to-blue-600", }; const labelMap = { admin: "Admin", manager: "Manager", user: "User", }; const textColorMap = { admin: "text-red-400", manager: "text-yellow-400", user: "text-blue-400", }; return ( ); };