aboutsummaryrefslogtreecommitdiff
path: root/pages/en/contact.js
diff options
context:
space:
mode:
Diffstat (limited to 'pages/en/contact.js')
-rw-r--r--pages/en/contact.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/pages/en/contact.js b/pages/en/contact.js
index 400a9e8..385bdb1 100644
--- a/pages/en/contact.js
+++ b/pages/en/contact.js
@@ -1,8 +1,10 @@
-import Layout from "../../components/layout";
+import { NewNavbar } from "@/components/shared/NavBar";
+import Footer from "@/components/shared/footer";
const Contact = () => {
return (
- <Layout className="">
+ <>
+ <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>
@@ -12,7 +14,8 @@ const Contact = () => {
</a>
</p>
</div>
- </Layout>
+ <Footer />
+ </>
);
};