mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-29 06:07:25 +02:00
First public commit
This commit is contained in:
commit
e05cd62e53
228 changed files with 17717 additions and 0 deletions
15
pages/404.tsx
Normal file
15
pages/404.tsx
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue