···11-import { LegalContent } from "app/legal/content";
22-import Link from "next/link";
33-44-export default function AboutPage() {
55- return (
66- <div className="flex flex-col gap-2">
77- <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">
88- <p>
99- Leaflet.pub is a web app for instantly creating and collaborating on
1010- documents.{" "}
1111- <Link href="/" prefetch={false}>
1212- Click here
1313- </Link>{" "}
1414- to create one and get started!
1515- </p>
1616-1717- <p>
1818- Leaflet is made by Learning Futures Inc. Previously we built{" "}
1919- <a href="https://hyperlink.academy">hyperlink.academy</a>
2020- </p>
2121- <p>
2222- You can find us on{" "}
2323- <a href="https://bsky.app/profile/leaflet.pub">Bluesky</a> or email as
2424- at <a href="mailto:contact@leaflet.pub">contact@leaflet.pub</a>
2525- </p>
2626- </div>
2727- <LegalContent />
2828- </div>
2929- );
3030-}