First public commit

This commit is contained in:
Luke Vella 2022-04-12 07:14:28 +01:00
commit e05cd62e53
228 changed files with 17717 additions and 0 deletions

15
pages/404.tsx Normal file
View file

@ -0,0 +1,15 @@
import ErrorPage from "@/components/error-page";
import DocumentSearch from "@/components/icons/document-search.svg";
import React from "react";
const Custom404: React.VoidFunctionComponent = () => {
return (
<ErrorPage
icon={DocumentSearch}
title="404 not found"
description="We couldn't find the page you're looking for."
/>
);
};
export default Custom404;