Add footer with links

This commit is contained in:
gpt-engineer-app[bot]
2025-09-28 14:42:49 +00:00
parent 7de6b974ed
commit fb708a36d9
5 changed files with 375 additions and 13 deletions

View File

@@ -0,0 +1,35 @@
import { Link } from 'react-router-dom';
export function Footer() {
return (
<footer className="border-t border-border bg-background py-4">
<div className="container mx-auto px-4">
<div className="flex flex-col sm:flex-row justify-between items-center gap-2 text-xs text-muted-foreground">
<div>
© 2024 ThrillWiki. All rights reserved.
</div>
<div className="flex items-center gap-4">
<Link
to="/terms"
className="hover:text-foreground transition-colors"
>
Terms of Service
</Link>
<Link
to="/privacy"
className="hover:text-foreground transition-colors"
>
Privacy Policy
</Link>
<Link
to="/submission-guidelines"
className="hover:text-foreground transition-colors"
>
Submission Guidelines
</Link>
</div>
</div>
</div>
</footer>
);
}