mirror of
https://github.com/trafficlunar/tomodachi-share.git
synced 2026-06-28 14:44:15 +00:00
feat: footer
This commit is contained in:
parent
c112f2e7ea
commit
5c9739ef99
2 changed files with 25 additions and 0 deletions
23
src/app/components/footer.tsx
Normal file
23
src/app/components/footer.tsx
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
import Link from "next/link";
|
||||
|
||||
export default function Footer() {
|
||||
return (
|
||||
<footer className="mt-auto text-xs flex flex-col justify-center gap-y-0.5 gap-2 text-black/50 p-8 *:text-center">
|
||||
<div className="flex justify-center gap-2">
|
||||
<span>tomodachishare is not affiliated with nintendo</span>
|
||||
</div>
|
||||
|
||||
<div className="flex justify-center gap-2">
|
||||
<Link href="/terms-of-service">terms of service</Link>
|
||||
<span>•</span>
|
||||
<Link href="/privacy">privacy</Link>
|
||||
<span>•</span>
|
||||
<a href="https://github.com/trafficlunar/tomodachi-share">source code</a>
|
||||
<span>•</span>
|
||||
<a href="https://trafficlunar.net">
|
||||
made by <span className="text-orange-400">trafficlunar</span>
|
||||
</a>
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue