import { NextSeo } from "next-seo"; import Content from "../components/Content"; import PageTitle from "../components/PageTitle"; import Link from "../components/Link"; import ContactForm from "../components/ContactForm"; import { styled } from "../lib/styles/stitches.config"; const PGPKey = styled("code", { fontSize: "0.925em", letterSpacing: "0.075em", wordSpacing: "-0.3em", }); const Contact = () => { return ( <> 📬 Contact Me

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

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

); }; export default Contact;