···11+import { NotFoundLayout } from "components/PageLayouts/NotFoundLayout";
22+33+export const PubNotFound = () => {
44+ return (
55+ <NotFoundLayout>
66+ <p className="font-bold">Sorry, we can't find this publication!</p>
77+ <p>
88+ This may be a glitch on our end. If the issue persists please{" "}
99+ <a href="mailto:contact@leaflet.pub">send us a note</a>.
1010+ </p>
1111+ </NotFoundLayout>
1212+ );
1313+};