Add legal disclaimer to footer

This commit is contained in:
Jared Schoeny 2025-10-09 23:32:40 -10:00
parent dc08905025
commit 7abd96fff6
2 changed files with 23 additions and 13 deletions

View File

@ -11,7 +11,7 @@ export default function Home() {
<span className="gradient-text">Discover</span> and share Pokémon ROM hack patches
</h1>
<p className="mt-4 text-[15px] text-foreground/80">
Find community-made hacks and patch in-browser with your own legally-obtained base ROMs for Game Boy, GBC, GBA, and Nintendo DS.
Find community-made hacks and patch in-browser with your own legally-obtained base ROMs for Game Boy, Game Boy Color, Game Boy Advance, and Nintendo DS.
</p>
<div className="mt-8 flex items-center gap-3">
<Link

View File

@ -3,18 +3,28 @@ import Link from "next/link";
export default function Footer() {
return (
<footer className="border-t border-white/10">
<div className="mx-auto flex max-w-screen-2xl items-center justify-between px-6 py-8 text-sm text-foreground/70">
<p>© {new Date().getFullYear()} Hackdex</p>
<div className="flex items-center gap-4">
<Link href="/discover" className="hover:underline">
Discover
</Link>
<Link href="/submit" className="hover:underline">
Submit
</Link>
<Link href="/login" className="hover:underline font-medium text-foreground">
Already a creator? Log in
</Link>
<div className="mx-auto max-w-screen-2xl px-6 py-8 text-sm text-foreground/70">
<div className="flex items-start justify-between">
<div>
<p>© {new Date().getFullYear()} Hackdex</p>
<p className="mt-2 max-w-2xl text-xs text-foreground/60">
Pokémon, Nintendo, Game Boy, Game Boy Color, Game Boy Advance, and Nintendo DS are
trademarks of their respective owners. Hackdex is an independent fan project and is not
affiliated with, endorsed, or sponsored by Nintendo, The Pokémon Company, or GAME FREAK.
Please support them by purchasing their most recent games.
</p>
</div>
<div className="flex items-center gap-4">
<Link href="/discover" className="hover:underline">
Discover
</Link>
<Link href="/submit" className="hover:underline">
Submit
</Link>
<Link href="/login" className="hover:underline font-medium text-foreground">
Already a creator? Log in
</Link>
</div>
</div>
</div>
</footer>