1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00

added page 404

This commit is contained in:
Fedor Katurov 2022-01-29 17:20:41 +07:00
parent e8f1bec1fb
commit ff8221fc1b
10 changed files with 1421 additions and 11 deletions

7
src/pages/404.tsx Normal file
View file

@ -0,0 +1,7 @@
import { NotFoundLayout } from '~/layouts/NotFoundLayout';
const NotFoundPage = () => {
return <NotFoundLayout />;
};
export default NotFoundPage;