feat: add error pages

This commit is contained in:
p-sw 2024-05-31 21:11:20 +09:00
parent 8a7baebdd5
commit 7d950ff71e
3 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,19 @@
import { isRouteErrorResponse, useRouteError } from "react-router-dom";
import UnexpectedError from "./errors/Unexpected";
import PageNotFound from "./errors/PageNotFound";
function ErrorBoundary() {
const error = useRouteError();
if (isRouteErrorResponse(error)) {
if (error.status === 404) {
return <PageNotFound />;
} else {
return <UnexpectedError />;
}
} else {
return <UnexpectedError />;
}
}
export default ErrorBoundary;

View File

@ -0,0 +1,22 @@
import { Link } from "react-router-dom";
import { Button } from "../../components/Button";
function PageNotFound() {
return (
<main className="flex-grow h-full flex flex-col justify-center items-center gap-8">
<section className="flex flex-col justify-center items-center text-center gap-2">
<h1 className="text-4xl font-bold">Page not found</h1>
<p className="text-base">
The page you are looking for does not exist.
</p>
</section>
<section className="flex flex-row justify-center items-center text-center gap-2">
<Button asChild preset="default">
<Link to="/">Go home</Link>
</Button>
</section>
</main>
);
}
export default PageNotFound;

View File

@ -0,0 +1,22 @@
import { Link } from "react-router-dom";
import { Button } from "../../components/Button";
function UnexpectedError() {
return (
<main className="flex-grow h-full flex flex-col justify-center items-center gap-8">
<section className="flex flex-col justify-center items-center text-center gap-2">
<h1 className="text-4xl font-bold">Something went wrong</h1>
<p className="text-base">
There was an unexpected error while loading the page.
</p>
</section>
<section className="flex flex-row justify-center items-center text-center gap-2">
<Button asChild preset="default">
<Link to="/">Go home</Link>
</Button>
</section>
</main>
);
}
export default UnexpectedError;