mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-03 04:06:06 +02:00
16 lines
392 B
TypeScript
16 lines
392 B
TypeScript
import React from "react";
|
|
|
|
import ErrorPage from "@/components/error-page";
|
|
import DocumentSearch from "@/components/icons/document-search.svg";
|
|
|
|
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;
|