Refactor code structure and remove redundant changes

This commit is contained in:
pacnpal
2025-11-09 16:31:34 -05:00
parent 2884bc23ce
commit eb68cf40c6
1080 changed files with 27361 additions and 56687 deletions

View File

@@ -0,0 +1,47 @@
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>
© {new Date().getFullYear()} ThrillWiki. All rights reserved.
</div>
<div className="flex items-center gap-4">
<Link
to="/contact"
className="hover:text-foreground transition-colors"
>
Contact
</Link>
<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>
<Link
to="/blog"
className="hover:text-foreground transition-colors"
>
Blog
</Link>
</div>
</div>
</div>
</footer>
);
}