pswui-docs/src/errors/PageNotFound.tsx
Shinwoo PARK c0b58d1737
Some checks are pending
Deploy React Webpage / build (push) Waiting to run
Deploy React Webpage / deploy (push) Blocked by required conditions
feat: upgrade to tailwindcss v4
2025-03-11 20:30:21 +09:00

26 lines
753 B
TypeScript

import { Button } from "@pswui/Button";
import { Link } from "react-router-dom";
function PageNotFound() {
return (
<main className="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;