aboutsummaryrefslogtreecommitdiff
path: root/pages/contact.js
blob: c7da87884f53b101a03d541a4eb916cc259d64af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import Layout from "../components/layout";

const Contact = () => {
  return (
    <Layout className="">
      <div className=" flex h-screen w-screen flex-col items-center justify-center font-karla  font-bold">
        <h1>Contact Us</h1>
        <p>If you have any questions or comments, please email us at:</p>
        <p>
          <a href="mailto:[email protected]?subject=[Moopa]%20-%20Your%20Subject">
            contact@moopa.live
          </a>
        </p>
      </div>
    </Layout>
  );
};

export default Contact;