diff options
| author | Factiven <[email protected]> | 2023-12-24 13:03:54 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-12-24 13:03:54 +0700 |
| commit | 50a0f0240d7fef133eb5acc1bea2b1168b08e9db (patch) | |
| tree | 307e09e505580415a58d64b5fc3580e9235869f1 /pages/id/index.js | |
| parent | Update README.md (#104) (diff) | |
| download | moopa-50a0f0240d7fef133eb5acc1bea2b1168b08e9db.tar.xz moopa-50a0f0240d7fef133eb5acc1bea2b1168b08e9db.zip | |
migrate to typescript
Diffstat (limited to 'pages/id/index.js')
| -rw-r--r-- | pages/id/index.js | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/pages/id/index.js b/pages/id/index.js deleted file mode 100644 index 5ef870d..0000000 --- a/pages/id/index.js +++ /dev/null @@ -1,47 +0,0 @@ -import Head from "next/head"; -import React from "react"; -import Image from "next/image"; -import Link from "next/link"; -import Footer from "@/components/shared/footer"; -import { NewNavbar } from "@/components/shared/NavBar"; -import MobileNav from "@/components/shared/MobileNav"; - -export default function Home() { - return ( - <> - <Head> - <title>Under Construction</title> - <meta name="about" content="About this web" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> - <link rel="icon" href="/svg/c.svg" /> - </Head> - <main className="flex flex-col h-screen"> - <NewNavbar /> - <MobileNav hideProfile /> - {/* Create an under construction page with tailwind css */} - <div className="h-full w-screen flex-center flex-grow flex-col"> - <Image - width={500} - height={500} - src="/work-on-progress.gif" - alt="work-on-progress" - className="w-[26vw] md:w-[15vw]" - /> - <h1 className="text-2xl sm:text-4xl xl:text-6x font-bold my-4"> - 🚧 Page Under Construction 🚧 - </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 - be available soon." - </p> - <Link href={`/en/`}> - <div className="bg-action xl:text-xl text-white font-bold py-2 px-4 rounded hover:bg-[#fb6f44]"> - Go back home - </div> - </Link> - </div> - <Footer /> - </main> - </> - ); -} |