diff options
Diffstat (limited to 'pages/en/contact.tsx')
| -rw-r--r-- | pages/en/contact.tsx | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pages/en/contact.tsx b/pages/en/contact.tsx new file mode 100644 index 0000000..9954f95 --- /dev/null +++ b/pages/en/contact.tsx @@ -0,0 +1,22 @@ +import { Navbar } from "@/components/shared/NavBar"; +import Footer from "@/components/shared/footer"; + +const Contact = () => { + return ( + <> + <Navbar 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"> + </a> + </p> + </div> + <Footer /> + </> + ); +}; + +export default Contact; |