From eef495e80991ca3469b452947ad35b2740981338 Mon Sep 17 00:00:00 2001 From: trafficlunar Date: Fri, 18 Apr 2025 18:10:03 +0100 Subject: [PATCH] style: redesign 404 page --- src/app/not-found.tsx | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx index de82f3d..b8b8190 100644 --- a/src/app/not-found.tsx +++ b/src/app/not-found.tsx @@ -1,13 +1,17 @@ import Link from "next/link"; +import { Icon } from "@iconify/react"; export default function NotFound() { return ( -
-

404

-

Page not found

- - Return Home - +
+
+

404

+

Page not found

+ + + Return Home + +
); }