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

13 lines
204 B
TypeScript

import SEO from "../components/SEO";
const PageError404 = () => {
return (
<>
<SEO title="404" />
<main>Error 404 - nie znaleziono takiego URL.</main>
</>
);
};
export default PageError404;