Files
shomal-hospital-ticketing-f…/app/not-found.tsx
2026-05-23 13:22:10 +03:30

18 lines
661 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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.
import Link from 'next/link';
export default function NotFound() {
return (
<div className="flex flex-col items-center justify-center min-h-screen ">
<h1 className="text-9xl font-bold text-white">404</h1>
<h2 className="text-2xl font-semibold mt-4 text-neutral-50">صفحه مورد نظر پیدا نشد</h2>
<p className="text-neutral-300 mt-2">متأسفیم، صفحهای که به دنبال آن هستید وجود ندارد.</p>
<Link
href="/"
className="mt-6 px-6 py-2 bg-white text-blue-900 rounded-lg transition"
>
بازگشت به داشبورد
</Link>
</div>
);
}