Spaces:
Sleeping
Sleeping
| import React from "react"; | |
| const AccentFooter: React.FC = () => { | |
| const currentYear = new Date().getFullYear(); | |
| return ( | |
| <footer className="border-t relative"> | |
| <div className="absolute top-0 left-0 w-full h-[2px] bg-gradient-to-r from-primary/40 via-primary/80 to-primary/20"></div> | |
| <div className="py-2 px-4 flex justify-end"> | |
| <span className="text-xs text-muted-foreground/70">© {currentYear} Synthesys</span> | |
| </div> | |
| </footer> | |
| ); | |
| }; | |
| export default AccentFooter; |