feat: add 404 page (#426)

* feat: add 404 page

* chore: lint and format

* fix: remove extra line
This commit is contained in:
doprz
2024-11-12 21:57:59 -06:00
committed by GitHub
parent db04bbb52e
commit 46c76b1703
4 changed files with 527 additions and 0 deletions

8
src/pages/404/index.tsx Normal file
View File

@@ -0,0 +1,8 @@
import 'uno.css';
import React from 'react';
import { createRoot } from 'react-dom/client';
import Page404 from './Page404';
createRoot(document.getElementById('root')!).render(<Page404 />);