Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
16 changes: 16 additions & 0 deletions app/(service)/not-found.tsx
Original file line number Diff line number Diff line change
@@ -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 (
<div className="flex h-[calc(100vh-45px)] w-full flex-col items-center justify-center gap-5">
<Image src="/images/404.png" alt="404 에러" width={256} height={221} />
<Link href="/">
<Button size="large" type="button" color="secondary">
홈으로 이동
</Button>
</Link>
</div>
);
}