···59596060 if (!permission_token)
6161 return (
6262- <div className="p-4 text-lg text-center">
6262+ <div className="p-4 text-lg text-center flex flex-col gap-4">
6363 <p>Sorry, home page not found!</p>
6464 <p>
6565- This may be a glitch on our end. If you see this repeatedly please{" "}
6565+ This may be a glitch on our end. If the issue persists please{" "}
6666 <a href="mailto:contact@leaflet.pub">send us a note</a>.
6767 </p>
6868 </div>
+4-4
app/lish/[did]/[publication]/[rkey]/page.tsx
···5151 let did = decodeURIComponent((await props.params).did);
5252 if (!did)
5353 return (
5454- <div className="p-4 text-lg text-center">
5454+ <div className="p-4 text-lg text-center flex flex-col gap-4">
5555 <p>Sorry, can't resolve handle.</p>
5656 <p>
5757- This may be a glitch on our end. If you see this repeatedly please{" "}
5757+ This may be a glitch on our end. If the issue persists please{" "}
5858 <a href="mailto:contact@leaflet.pub">send us a note</a>.
5959 </p>
6060 </div>
···7575 ]);
7676 if (!document?.data || !document.documents_in_publications[0].publications)
7777 return (
7878- <div className="p-4 text-lg text-center">
7878+ <div className="p-4 text-lg text-center flex flex-col gap-4">
7979 <p>Sorry, post not found!</p>
8080 <p>
8181- This may be a glitch on our end. If you see this repeatedly please{" "}
8181+ This may be a glitch on our end. If the issue persists please{" "}
8282 <a href="mailto:contact@leaflet.pub">send us a note</a>.
8383 </p>
8484 </div>
+4-4
app/lish/[did]/[publication]/dashboard/page.tsx
···4141 let identity = await getIdentityData();
4242 if (!identity || !identity.atp_did)
4343 return (
4444- <div className="p-4 text-lg text-center">
4444+ <div className="p-4 text-lg text-center flex flex-col gap-4">
4545 <p>Sorry, looks like you're not logged in.</p>
4646 <p>
4747- This may be a glitch on our end. If you see this repeatedly please{" "}
4747+ This may be a glitch on our end. If the issue persists please{" "}
4848 <a href="mailto:contact@leaflet.pub">send us a note</a>.
4949 </p>
5050 </div>
···110110111111const PubNotFound = () => {
112112 return (
113113- <div className="p-4 text-lg text-center">
113113+ <div className="p-4 text-lg text-center flex flex-col gap-4">
114114 <p>Sorry, publication not found!</p>
115115 <p>
116116- This may be a glitch on our end. If you see this repeatedly please{" "}
116116+ This may be a glitch on our end. If the issue persists please{" "}
117117 <a href="mailto:contact@leaflet.pub">send us a note</a>.
118118 </p>
119119 </div>
+2-2
app/lish/[did]/[publication]/page.tsx
···162162163163const PubNotFound = () => {
164164 return (
165165- <div className="p-4 text-lg text-center">
165165+ <div className="p-4 text-lg text-center flex flex-col gap-4">
166166 <p>Sorry, publication not found!</p>
167167 <p>
168168- This may be a glitch on our end. If you see this repeatedly please{" "}
168168+ This may be a glitch on our end. If the issue persists please{" "}
169169 <a href="mailto:contact@leaflet.pub">send us a note</a>.
170170 </p>
171171 </div>