Skip to content

Commit d3c3486

Browse files
authored
feat: new 404 page (#963)
1 parent 2cf66dd commit d3c3486

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

public/assets/img/vendor/404.webp

50.2 KB
Loading

src/app/not-found.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import Image from 'next/image'
2+
3+
export default function NotFoundPage() {
4+
return (
5+
<div className="flex h-[70vh] flex-col items-center justify-center p-8">
6+
<Image
7+
src="/assets/img/vendor/404.webp"
8+
alt="404 Not Found"
9+
width="480"
10+
height="270"
11+
/>
12+
</div>
13+
)
14+
}

0 commit comments

Comments
 (0)