diff options
| author | Factiven <[email protected]> | 2023-09-25 00:44:40 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-09-25 00:44:40 +0700 |
| commit | 1a85c2571690ba592ac5183d5eadaf9846fe532b (patch) | |
| tree | 3f3552c00cd49c0eeab5275275cf5cf5666e5027 /pages/en/contact.js | |
| parent | Delete .github/workflows/deploy.yml (diff) | |
| download | moopa-1a85c2571690ba592ac5183d5eadaf9846fe532b.tar.xz moopa-1a85c2571690ba592ac5183d5eadaf9846fe532b.zip | |
Update v4.1.0 (#79)v4.1.0
* Update v4.1.0
* Update pages/_app.js
Diffstat (limited to 'pages/en/contact.js')
| -rw-r--r-- | pages/en/contact.js | 9 |
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 /> + </> ); }; |