From 52f2c5673c2b050f59ec9839c6e427b26a3c3a31 Mon Sep 17 00:00:00 2001 From: Thanakarn Klangkasame <77600906+Simulationable@users.noreply.github.com> Date: Thu, 2 Oct 2025 12:25:18 +0700 Subject: [PATCH] Change Not Found Page --- src/app/not-found.tsx | 67 ++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 63 insertions(+), 4 deletions(-) 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 +}