added frontend + securing beta server invites

This commit is contained in:
2026-01-02 22:50:02 +05:30
parent cb12b8ef75
commit 9b17a99456
52 changed files with 5409 additions and 5 deletions

13
web/components/Footer.tsx Normal file
View File

@@ -0,0 +1,13 @@
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;