This commit is contained in:
Vitalii Kiiko
2024-09-27 12:51:29 +02:00
parent 478af11cb9
commit 4be858ca74
19 changed files with 580 additions and 292 deletions

View File

@@ -2,8 +2,11 @@ import React from 'react';
const PageNotFound = () => {
return(
<div>
Page not found
<div className="error404">
<div>
<h1>Error 404</h1>
<span>Pagina non trovata</span>
</div>
</div>
)
}