mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-04 12:46:04 +02:00
15 lines
391 B
TypeScript
15 lines
391 B
TypeScript
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;
|