2025-08-13 14:23:48 +01:00
|
|
|
import Logo from "/MAV.svg";
|
|
|
|
|
|
|
|
|
|
const Footer = () => {
|
|
|
|
|
return (
|
2025-08-18 16:04:03 +01:00
|
|
|
<footer className="bg-gray-900 border-t border-gray-700 text-white py-5 text-left p-8 h-30 mt-5 flex flex-col space-y-4 ">
|
2025-08-13 14:23:48 +01:00
|
|
|
<img src={Logo} alt="Logo" width={100} height={100} />
|
|
|
|
|
<p className="text-sm">
|
|
|
|
|
{new Date().getFullYear()} MAV Systems © All rights reserved.
|
|
|
|
|
</p>
|
|
|
|
|
</footer>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default Footer;
|