19 lines
750 B
TypeScript
19 lines
750 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 className="flex items-center gap-6">
|
|
<a href="/docs" className="text-gray-400 hover:text-white transition-colors text-sm font-medium">
|
|
Documentation
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|