2025-08-13 14:23:48 +01:00
|
|
|
import { Link } from "react-router";
|
|
|
|
|
import Logo from "/MAV.svg";
|
2025-08-29 10:07:59 +01:00
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
2025-09-08 15:21:17 +01:00
|
|
|
import { faGear } from "@fortawesome/free-solid-svg-icons";
|
|
|
|
|
import { faListCheck } from "@fortawesome/free-solid-svg-icons";
|
2025-08-13 14:23:48 +01:00
|
|
|
|
|
|
|
|
const Header = () => {
|
|
|
|
|
return (
|
2025-08-29 10:07:59 +01:00
|
|
|
<div className="relative bg-[#253445] border-b border-gray-500 items-center mx-auto px-2 sm:px-6 lg:px-8 p-4 flex flex-row justify-between">
|
2025-09-08 15:21:17 +01:00
|
|
|
{/* Left: Logo */}
|
2025-08-13 14:23:48 +01:00
|
|
|
<div className="w-30">
|
|
|
|
|
<Link to={"/"}>
|
2025-09-08 15:21:17 +01:00
|
|
|
<img src={Logo} alt="Logo" width={150} height={150} />
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex items-center space-x-8">
|
|
|
|
|
<Link to={"/session-settings"}>
|
|
|
|
|
<FontAwesomeIcon icon={faListCheck} />
|
|
|
|
|
</Link>
|
|
|
|
|
<Link to={"/system-settings"}>
|
|
|
|
|
<FontAwesomeIcon icon={faGear} />
|
2025-08-13 14:23:48 +01:00
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2025-09-08 15:21:17 +01:00
|
|
|
|
2025-08-13 14:23:48 +01:00
|
|
|
export default Header;
|