From ff374328f9355a871e18ae7264eb0e6adee4a888 Mon Sep 17 00:00:00 2001 From: hanyugeon Date: Tue, 30 Jul 2024 16:41:01 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=9C=A0=EC=A0=80=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20not-found.tsx=20=EC=9E=91=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/profile/[userId]/not-found.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/app/profile/[userId]/not-found.tsx diff --git a/src/app/profile/[userId]/not-found.tsx b/src/app/profile/[userId]/not-found.tsx new file mode 100644 index 00000000..9a227de6 --- /dev/null +++ b/src/app/profile/[userId]/not-found.tsx @@ -0,0 +1,20 @@ +import Link from 'next/link'; +import Image from 'next/image'; + +import Button from '@/components/common/Button'; + +export default function NotFound() { + return ( +
+ loading +

+ 다독이가 길을 잃었어요. +

+ + + +
+ ); +}