1
0
Fork 0

refactor: drop everything and start again

- too many packages
- packages were too general
- the repo was hard to work with
- sites were too connected to packages - difficult to do stuff after a while
This commit is contained in:
Vojtěch Mareš 2023-06-06 20:25:44 +02:00
parent 358e6e59e3
commit ada7eb3cdd
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D
54 changed files with 1066 additions and 1011 deletions

View file

@ -0,0 +1,13 @@
import { Boundary } from '../components/Boundary';
export default function NotFound() {
return (
<Boundary labels={['not-found.tsx']} color="pink">
<div className="space-y-4 text-vercel-pink">
<h2 className="text-lg font-bold">Not Found</h2>
<p className="text-sm">Could not find requested resource</p>
</div>
</Boundary>
);
}