import Link from "next/link";

export default function NotFound() {
  return (
    <main className="mx-auto max-w-3xl px-3 py-6 text-center space-y-4">
      <h1 className="text-3xl font-bold">Game not found</h1>
      <p className="text-zinc-600 dark:text-zinc-400">
        The game you&apos;re looking for doesn&apos;t exist or has been removed.
      </p>
      <Link
        href="/"
        className="inline-block px-4 py-2 bg-zinc-900 dark:bg-zinc-100 text-white dark:text-zinc-900 rounded-lg hover:opacity-90"
      >
        Back to feed
      </Link>
    </main>
  );
}
