Skip to content

Commit

Permalink
feat: new 404 page (#963)
Browse files Browse the repository at this point in the history
  • Loading branch information
leomotors committed May 15, 2024
1 parent 2cf66dd commit d3c3486
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Binary file added public/assets/img/vendor/404.webp
Binary file not shown.
14 changes: 14 additions & 0 deletions src/app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import Image from 'next/image'

export default function NotFoundPage() {
return (
<div className="flex h-[70vh] flex-col items-center justify-center p-8">
<Image
src="/assets/img/vendor/404.webp"
alt="404 Not Found"
width="480"
height="270"
/>
</div>
)
}

0 comments on commit d3c3486

Please sign in to comment.