Files
ipd-shomalhospital-admin-panel/src/app/error.tsx
2026-03-26 08:11:29 +03:30

18 lines
561 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"use client"
import Link from "next/link";
export default function ErrorPage() {
return (
<div className="flex flex-col items-center justify-center h-screen bg-linear-to-b bg-radial from-red-100 to-white text-red-800">
<h1 className="text-6xl font-bold mb-4">500</h1>
<p className="text-xl mb-6">خطای سرور رخ داده است.</p>
<Link
href="/"
className="px-6 py-3 bg-red-600 text-white rounded hover:bg-red-700 transition"
>
بازگشت به صفحه اصلی
</Link>
</div>
);
}