14 lines
488 B
TypeScript
14 lines
488 B
TypeScript
const Footer = () => {
|
|
return (
|
|
<footer className="py-12 relative z-10 border-t border-white/5 bg-black/20 backdrop-blur-md">
|
|
<div className="container mx-auto px-4 flex flex-col md:flex-row justify-between items-center gap-6">
|
|
<div className="text-gray-400 text-sm">
|
|
© {new Date().getFullYear()} Void Sentinel. All rights reserved.
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|