From 482b1c8db5cfeaa20d75ce92fcb10f3ca8433633 Mon Sep 17 00:00:00 2001 From: Factiven Date: Fri, 14 Apr 2023 00:07:02 +0700 Subject: Update 5th --- pages/components/loadingScreen.js | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 pages/components/loadingScreen.js (limited to 'pages/components/loadingScreen.js') 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 ( +
+
+ qiqi +
+ + { + typewriter + .typeString("Please wait...") + .pauseFor(1500) + .deleteAll() + .start(); + }} + /> + +
+
+
+ ); +}; + +export default LoadingScreen; -- cgit v1.2.3