This repository has been archived on 2026-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web/pages/404.tsx
2022-12-10 23:58:09 +01:00

13 lines
163 B
TypeScript

import SEO from "../components/SEO";
const PageError404 = () => {
return (
<>
<SEO title="404" />
Error 404!!
</>
);
};
export default PageError404;