pmtool / src /components /layout /footer-with-logo.tsx
devarshia5's picture
Upload 487 files
d97b8f9 verified
Raw
History Blame Contribute Delete
568 Bytes
import React from "react";
const FooterWithLogo: React.FC = () => {
const currentYear = new Date().getFullYear();
return (
<footer className="py-2 px-4 flex justify-between items-center text-xs text-muted-foreground/70 border-t">
<div className="flex items-center gap-2">
<img
src="/SynthesysLOGO.png"
alt="Synthesys Logo"
className="h-5 w-auto"
/>
</div>
<span>© {currentYear} Synthesys Solutions Pvt. Ltd.</span>
</footer>
);
};
export default FooterWithLogo;