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/loadingScreen.js | |
| parent | Update index.js (diff) | |
| download | moopa-482b1c8db5cfeaa20d75ce92fcb10f3ca8433633.tar.xz moopa-482b1c8db5cfeaa20d75ce92fcb10f3ca8433633.zip | |
Update 5th
Diffstat (limited to 'pages/components/loadingScreen.js')
| -rw-r--r-- | pages/components/loadingScreen.js | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/pages/components/loadingScreen.js b/pages/components/loadingScreen.js new file mode 100644 index 0000000..5b5621c --- /dev/null +++ b/pages/components/loadingScreen.js @@ -0,0 +1,35 @@ +import React from "react"; +import Typewriter from "typewriter-effect"; + +const LoadingScreen = () => { + return ( + <main className="z-50 flex h-screen items-center bg-white pb-56 dark:bg-[#121212] md:justify-center md:pb-48"> + <div className="flex w-screen flex-col items-center md:justify-center"> + <img + src="https://media.discordapp.net/attachments/997882702751596674/1066581397533368401/Qiqi_1.png?width=701&height=701" + alt="qiqi" + className="translate-y-16 scale-[75%] md:scale-[85%]" + /> + <div className="font-outfit text-2xl font-medium md:text-4xl"> + <i> + <Typewriter + options={{ + autoStart: true, + loop: true, + }} + onInit={(typewriter) => { + typewriter + .typeString("Please wait...") + .pauseFor(1500) + .deleteAll() + .start(); + }} + /> + </i> + </div> + </div> + </main> + ); +}; + +export default LoadingScreen; |