Hey is a decentralized and permissionless social media app built with Lens Protocol 🌿
1import { Link } from "react-router";
2import { Button, H3 } from "@/components/Shared/UI";
3import PageLayout from "./PageLayout";
4
5const Custom404 = () => {
6 return (
7 <PageLayout title="404">
8 <div className="p-10 text-center">
9 <H3 className="mb-4">Oops, Lost‽</H3>
10 <div className="mb-4">This page could not be found.</div>
11 <Link to="/">
12 <Button className="mx-auto flex items-center">Go to home</Button>
13 </Link>
14 </div>
15 </PageLayout>
16 );
17};
18
19export default Custom404;