a tool for shared writing and social publishing
1import { LegalContent } from "app/legal/content";
2import Link from "next/link";
3
4export default function AboutPage() {
5 return (
6 <div className="flex flex-col gap-2">
7 <div className="flex flex-col h-[80vh] mx-auto sm:px-4 px-3 sm:py-6 py-4 max-w-prose gap-4 text-lg">
8 <p>
9 Leaflet.pub is a web app for instantly creating and collaborating on
10 documents.{" "}
11 <Link href="/" prefetch={false}>
12 Click here
13 </Link>{" "}
14 to create one and get started!
15 </p>
16
17 <p>
18 Leaflet is made by Learning Futures Inc. Previously we built{" "}
19 <a href="https://hyperlink.academy">hyperlink.academy</a>
20 </p>
21 <p>
22 You can find us on{" "}
23 <a href="https://bsky.app/profile/leaflet.pub">Bluesky</a> or email as
24 at <a href="mailto:contact@leaflet.pub">contact@leaflet.pub</a>
25 </p>
26 </div>
27 <LegalContent />
28 </div>
29 );
30}