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/id | |
| 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/id')
| -rw-r--r-- | pages/id/index.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pages/id/index.js b/pages/id/index.js index 661bc05..b8898e5 100644 --- a/pages/id/index.js +++ b/pages/id/index.js @@ -1,9 +1,9 @@ import Head from "next/head"; import React from "react"; -import Navbar from "../../components/navbar"; import Image from "next/image"; import Link from "next/link"; -import Footer from "../../components/footer"; +import Footer from "@/components/shared/footer"; +import { NewNavbar } from "@/components/shared/NavBar"; export default function Home() { return ( @@ -15,7 +15,7 @@ export default function Home() { <link rel="icon" href="/svg/c.svg" /> </Head> <main className="flex flex-col h-screen"> - <Navbar className="bg-[#0c0d10] z-50" /> + <NewNavbar /> {/* Create an under construction page with tailwind css */} <div className="h-full w-screen flex-center flex-grow flex-col"> <Image @@ -26,7 +26,7 @@ export default function Home() { className="w-[26vw] md:w-[15vw]" /> <h1 className="text-2xl sm:text-4xl xl:text-6x font-bold my-4"> - 🚧 We are still working on it 🚧 + 🚧 Work still on progress 🚧 </h1> <p className="text-base sm:text-lg xl:text-x text-gray-300 mb-6 text-center"> "Please be patient, as we're still working on this page and it will |