import Link from "next/link";

import { Button } from "@/components/ui/button";

export default function NotFoundPage() {
  return (
    <section className="mx-auto flex min-h-[50vh] w-full max-w-md flex-col items-center justify-center gap-4 px-4 text-center">
      <h1 className="text-2xl font-semibold text-emerald-900">Page not found</h1>
      <p className="text-sm text-muted-foreground">
        The requested resource does not exist or is not accessible in your account.
      </p>
      <Button asChild>
        <Link href="/">Back to Home</Link>
      </Button>
    </section>
  );
}
