aboutsummaryrefslogtreecommitdiff
path: root/pages/contact.js
diff options
context:
space:
mode:
authorFactiven <[email protected]>2023-04-11 23:23:29 +0700
committerFactiven <[email protected]>2023-04-11 23:23:29 +0700
commit1fcdd9f7d859b925bf92265f441655d5522e351c (patch)
tree86391522f6fcc70d105f7e796a9f91d132ee4a29 /pages/contact.js
parentInitial commit (diff)
downloadmoopa-1fcdd9f7d859b925bf92265f441655d5522e351c.tar.xz
moopa-1fcdd9f7d859b925bf92265f441655d5522e351c.zip
initial commit
Diffstat (limited to 'pages/contact.js')
-rw-r--r--pages/contact.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/pages/contact.js b/pages/contact.js
new file mode 100644
index 0000000..7dbc6d1
--- /dev/null
+++ b/pages/contact.js
@@ -0,0 +1,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]">[email protected]</a>
+ </p>
+ </div>
+ </Layout>
+ );
+};
+
+export default Contact;