import PageTitle from "../../components/PageTitle"; import Link from "../../components/Link"; import { addMetadata } from "../../lib/helpers/metadata"; import ContactForm from "./form"; export const metadata = addMetadata({ title: "Contact Me", description: "Fill out this quick form and I'll get back to you as soon as I can.", alternates: { canonical: "/contact", }, }); const Page = () => { return (
Contact

Fill out this quick form and I’ll get back to you as soon as I can! You can also{" "} email me directly or send me a{" "} direct message on Mastodon.

🔐 You can grab my public key here:{" "} 6BF3 79D3 6F67 1480 2B0C 9CF2 51E6 9A39 .

); }; export default Page;