aboutsummaryrefslogtreecommitdiff
path: root/components/underConst.js
diff options
context:
space:
mode:
authorFactiven <[email protected]>2023-04-11 23:23:29 +0700
committerFactiven <[email protected]>2023-04-11 23:23:29 +0700
commit1fcdd9f7d859b925bf92265f441655d5522e351c (patch)
tree86391522f6fcc70d105f7e796a9f91d132ee4a29 /components/underConst.js
parentInitial commit (diff)
downloadmoopa-1fcdd9f7d859b925bf92265f441655d5522e351c.tar.xz
moopa-1fcdd9f7d859b925bf92265f441655d5522e351c.zip
initial commit
Diffstat (limited to 'components/underConst.js')
-rw-r--r--components/underConst.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/components/underConst.js b/components/underConst.js
new file mode 100644
index 0000000..a6d9e80
--- /dev/null
+++ b/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;