Files
Mav-Mobile-UI/src/components/UI/Header.tsx

22 lines
661 B
TypeScript
Raw Normal View History

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";
import { faSliders } 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-08-13 14:23:48 +01:00
<div className="w-30">
<Link to={"/"}>
<img src={Logo} alt="Logo" width={100} height={100} />
</Link>
</div>
2025-08-29 10:07:59 +01:00
<Link to={"/system-settings"}>
<FontAwesomeIcon icon={faSliders} />
</Link>
2025-08-13 14:23:48 +01:00
</div>
);
};
export default Header;