a tool for shared writing and social publishing
1export default function NotFound() {
2 return (
3 <div className="w-screen h-full flex place-items-center bg-bg-leaflet">
4 <div className="bg-bg-page mx-auto p-4 border border-border rounded-md flex flex-col text-center justify-centergap-1 w-fit">
5 <div className="font-bold">
6 Hmmm... Couldn't find that Leaflet.
7 </div>
8 <div>
9 You can{" "}
10 <a href="mailto:contact@leaflet.pub" target="blank">
11 email us
12 </a>{" "}
13 for help!
14 </div>
15 </div>
16 </div>
17 );
18}