import Link from "next/link";
import { Button } from "@/components/ui/button";
import { Home } from "lucide-react";

export default function NotFound() {
  return (
    <div className="min-h-screen flex items-center justify-center bg-background p-4">
      <div className="text-center max-w-md">
        <p className="text-6xl font-bold text-accent">404</p>
        <h1 className="text-2xl font-bold mt-4 mb-2">Page introuvable</h1>
        <p className="text-muted-foreground mb-6">
          La page que vous recherchez n&apos;existe pas ou a été déplacée.
        </p>
        <Button asChild variant="accent">
          <Link href="/">
            <Home className="w-4 h-4" />
            Retour au tableau de bord
          </Link>
        </Button>
      </div>
    </div>
  );
}
