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