pmtool / src /components /layout /accent-footer.tsx
devarshia5's picture
Upload 487 files
d97b8f9 verified
Raw
History Blame Contribute Delete
525 Bytes
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;