Spaces:
Sleeping
Sleeping
| 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; |