From 7f9759b5bc0620c466899fadc436523c2fb44687 Mon Sep 17 00:00:00 2001 From: aken-you Date: Wed, 8 Oct 2025 17:16:51 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=A3=A8=ED=8A=B8=EC=97=90=20=EC=9E=88?= =?UTF-8?q?=EB=8A=94=20not-found=20=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=82=AD?= =?UTF-8?q?=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/{ => (admin)}/not-found.tsx | 0 app/(service)/not-found.tsx | 16 ++++++++++++++++ 2 files changed, 16 insertions(+) rename app/{ => (admin)}/not-found.tsx (100%) create mode 100644 app/(service)/not-found.tsx diff --git a/app/not-found.tsx b/app/(admin)/not-found.tsx similarity index 100% rename from app/not-found.tsx rename to app/(admin)/not-found.tsx diff --git a/app/(service)/not-found.tsx b/app/(service)/not-found.tsx new file mode 100644 index 00000000..48151d31 --- /dev/null +++ b/app/(service)/not-found.tsx @@ -0,0 +1,16 @@ +import Image from 'next/image'; +import Link from 'next/link'; +import Button from '@/shared/ui/button'; + +export default function NotFound() { + return ( +
+ 404 에러 + + + +
+ ); +}