import { Metadata } from "next";

export const metadata: Metadata = {
  title: "404",
  description: "404",
  icons: {
    icon: "/favicon.ico",
  },
};

export default function NotFound() {
  return (
    <div className="flex flex-col items-center justify-center min-h-screen text-center">
      <h1 className="text-6xl font-bold text-primary mb-4">404</h1>
      <p className="text-lg text-gray-600 mb-6">
        صفحه‌ای که دنبال آن هستید پیدا نشد.
      </p>
      <a
        href="/"
        className="px-6 py-2 rounded-lg bg-primary text-white hover:bg-primary/90 transition mb-4"
      >
        بازگشت به صفحه اصلی
      </a>
      <a href="/login" className="px-6 py-2 rounded-lg text-primary">
        ورود مجدد
      </a>
    </div>
  );
}
