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/dmca.js | |
| parent | Delete .github/workflows/deploy.yml (diff) | |
| download | moopa-4.1.0.tar.xz moopa-4.1.0.zip | |
Update v4.1.0 (#79)v4.1.0
* Update v4.1.0
* Update pages/_app.js
Diffstat (limited to 'pages/en/dmca.js')
| -rw-r--r-- | pages/en/dmca.js | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/pages/en/dmca.js b/pages/en/dmca.js index d6d7ccf..e559829 100644 --- a/pages/en/dmca.js +++ b/pages/en/dmca.js @@ -1,5 +1,7 @@ +import MobileNav from "@/components/shared/MobileNav"; +import { NewNavbar } from "@/components/shared/NavBar"; +import Footer from "@/components/shared/footer"; import Head from "next/head"; -import Layout from "../../components/layout"; export default function DMCA() { return ( @@ -18,11 +20,14 @@ export default function DMCA() { <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="icon" href="/svg/c.svg" /> </Head> - <Layout> + <> + <NewNavbar withNav={true} scrollP={5} shrink={true} /> + + <MobileNav hideProfile={true} /> <div className="min-h-screen z-20 flex w-screen justify-center items-center"> - <div className="w-[75%] text-2xl gap-7 flex flex-col my-[10rem]"> + <div className="px-5 lg:px-0 lg:w-[75%] text-2xl gap-7 flex flex-col my-[10rem]"> <div className="flex"> - <h1 className="text-4xl font-bold font-karla rounded-md bg-[#212121] p-3"> + <h1 className="text-4xl font-bold font-karla rounded-md bg-secondary p-3"> DMCA - Disclaimer </h1> </div> @@ -100,7 +105,8 @@ export default function DMCA() { </div> </div> </div> - </Layout> + <Footer /> + </> </> ); } |