blob: 7dbc6d1cff8dd5b160c851586a3d5fce015e961b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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]">factiven.org@gmail.com</a>
</p>
</div>
</Layout>
);
};
export default Contact;
|