aboutsummaryrefslogtreecommitdiff
path: root/components/underConst.js
blob: a6d9e80896aaf873dba5a16717e3c34eb5f54325 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import Footer from "./footer";
import StickerWIP from "./media/sticker";
import Navbar from "./navbar";

function UnderConstruction() {
  return (
    <>
      <div className="my-[5rem] flex h-[698px] items-center justify-center">
        <div className="flex scale-75 flex-col items-center justify-center gap-14 md:scale-90 md:flex-row md:pb-0">
          <div className="scale-110 md:scale-125">
            <StickerWIP />
          </div>
          <h1 className="text-center font-karla text-4xl text-red-600 drop-shadow-sm transition-colors duration-500 dark:text-red-400 md:w-[820px] md:text-5xl">
            {"> Sabar yahhh, pagenya masih dibikin..."} {":)"}
          </h1>
        </div>
      </div>
    </>
  );
}

export default UnderConstruction;