import { NextSeo } from "next-seo"; import Content from "../components/Content/Content"; import PageTitle from "../components/PageTitle/PageTitle"; import Link from "../components/Link/Link"; import ContactForm from "../components/ContactForm/ContactForm"; import { styled } from "../lib/styles/stitches.config"; const Wrapper = styled(Content, { maxWidth: "600px", margin: "0 auto", }); const PGPKey = styled("code", { fontSize: "0.925em", wordSpacing: "-0.25em", }); const Contact = () => ( <> 📬 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 Twitter, or{" "} text me.

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

); export default Contact;