Files
Ben Allfree e6bcf4c01e wip
2026-04-09 18:58:57 -07:00

24 lines
827 B
TypeScript

import { Link } from "react-router-dom"
export default function Footer() {
return (
<footer className="border-t border-slate-800 bg-slate-950 mt-auto">
<div className="max-w-7xl mx-auto px-8 py-6">
<div className="flex flex-wrap items-center justify-center gap-4 text-sm text-slate-400">
<Link to="/license" className="hover:text-white transition-colors">
License
</Link>
<span className="text-slate-600"></span>
<Link to="/privacy" className="hover:text-white transition-colors">
Privacy Policy
</Link>
<span className="text-slate-600"></span>
<Link to="/terms" className="hover:text-white transition-colors">
Terms of Service
</Link>
</div>
</div>
</footer>
)
}