diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx index 506a92f..192a5e6 100644 --- a/src/app/not-found.tsx +++ b/src/app/not-found.tsx @@ -1,8 +1,67 @@ +"use client"; + +import Link from "next/link"; + export default function NotFound() { return ( -
-

Not Found

-

Sorry, the page you are looking for does not exist.

+
+ {/* Subtle mono grid background */} +
+ + {/* Giant watermark 404 */} +
+ 404 +
+ + {/* Content */} +
+

Error

+

+ + Page Not Found + +

+

+ ขอโทษครับ ไม่พบหน้าที่คุณกำลังมองหา ลองกลับไปหน้าแรกหรือย้อนกลับไปหน้าก่อนหน้า +

+ +
+ + กลับหน้าแรก + + +
+
+ + {/* Footer (mono) */} +
); -} \ No newline at end of file +}