Skip to content

Commit

Permalink
✨ Feat(#111): 404 페이지 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
JeongWuk committed Nov 5, 2023
1 parent 960c5ec commit 966011d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
Binary file added public/images/notfound.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions src/app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import Image from "next/image";
import NotFound from "../../public/images/notfound.png";

const NotFoundPage = () => {
return (
<div className="flex h-750 items-center justify-center">
<Image
src={NotFound}
alt="not found image"
width={400}
height={200}
/>
</div>
);
};

export default NotFoundPage;

0 comments on commit 966011d

Please sign in to comment.