pmtool / src /components /layout /footer.tsx
devarshia5's picture
Upload 487 files
d97b8f9 verified
Raw
History Blame Contribute Delete
335 Bytes
import React from "react";
const Footer: React.FC = () => {
const currentYear = new Date().getFullYear();
return (
<footer className="py-2 px-4 text-right text-xs text-muted-foreground/70 border-t">
<span>© {currentYear} Synthesys Solutions Pvt. Ltd.</span>
</footer>
);
};
export default Footer;