blob: 400a9e8c30af9aba21a6896e163def52e2d8bc4f (
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;
|