diff options
| author | Factiven <[email protected]> | 2023-04-17 13:33:37 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-04-17 13:33:37 +0700 |
| commit | 545d8a3473823f0a86cad3c177dbbb4ebb794a75 (patch) | |
| tree | 1606111911ea31c8fd8f9560dade41f5fedd6520 /components/loadingScreen.js | |
| parent | Update 7th (diff) | |
| download | moopa-545d8a3473823f0a86cad3c177dbbb4ebb794a75.tar.xz moopa-545d8a3473823f0a86cad3c177dbbb4ebb794a75.zip | |
Snapshot Moopa v3.2
Diffstat (limited to 'components/loadingScreen.js')
| -rw-r--r-- | components/loadingScreen.js | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/components/loadingScreen.js b/components/loadingScreen.js deleted file mode 100644 index 5b5621c..0000000 --- a/components/loadingScreen.js +++ /dev/null @@ -1,35 +0,0 @@ -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; |