blob: 385bdb1fa1afd042cfe2a3df5dff4874e981e2a8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { NewNavbar } from "@/components/shared/NavBar";
import Footer from "@/components/shared/footer";
const Contact = () => {
return (
<>
<NewNavbar withNav={true} scrollP={5} shrink={true} />
<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>
<Footer />
</>
);
};
export default Contact;
|