diff options
| author | Factiven <[email protected]> | 2023-04-14 00:07:02 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-04-14 00:07:02 +0700 |
| commit | 482b1c8db5cfeaa20d75ce92fcb10f3ca8433633 (patch) | |
| tree | f0c12d3acb6bd8ce43e63e01527c97a62dba7e9c /pages/components/underConst.js | |
| parent | Update index.js (diff) | |
| download | moopa-482b1c8db5cfeaa20d75ce92fcb10f3ca8433633.tar.xz moopa-482b1c8db5cfeaa20d75ce92fcb10f3ca8433633.zip | |
Update 5th
Diffstat (limited to 'pages/components/underConst.js')
| -rw-r--r-- | pages/components/underConst.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pages/components/underConst.js b/pages/components/underConst.js new file mode 100644 index 0000000..a6d9e80 --- /dev/null +++ b/pages/components/underConst.js @@ -0,0 +1,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; |