From 397832e4a1e57e6745e2a893055b56c34053931e Mon Sep 17 00:00:00 2001 From: mialsong Date: Thu, 4 Dec 2025 00:44:26 -0800 Subject: [PATCH] implemented responsive design and animation to 404 --- src/app/not-found.tsx | 33 +++++++++++++++++++++++---------- 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx index 80f1361..79b67c5 100644 --- a/src/app/not-found.tsx +++ b/src/app/not-found.tsx @@ -1,17 +1,30 @@ +"use client"; import Link from "next/link"; +import { motion } from "motion/react"; const NotFound = () => { return ( -
-

404

-

Page Not Found

- - Back to Home - -
+ +
+

+ 404 +

+

+ Page Not Found +

+ + Back to Home + +
+
); };