add 404 page

This commit is contained in:
Dobromir Popov
2024-12-02 22:12:22 +02:00
parent ff27e6046e
commit 138918c043
2 changed files with 4 additions and 3 deletions

View File

@ -31,7 +31,7 @@ services:
ports:
- 8083:8080
# THE APP
# THE APP
nextjs-app:
image: sachinvashist/nextjs-docker
ports:
@ -61,5 +61,3 @@ services:
stdin_open: true
# depends_on:
# - mariadb

3
pages/404.js Normal file
View File

@ -0,0 +1,3 @@
export default function Custom404() {
return <h1>404 - Страницата не е намерена</h1>
}