diff options
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; |