Login bug fix

This commit is contained in:
2024-03-04 17:09:23 +08:00
parent 0f2280f116
commit a3f507169a
20 changed files with 216 additions and 76 deletions

View File

@@ -0,0 +1,9 @@
import ComponentGlobal_LoadingPage from "@/app_modules/component_global/loading_page";
export default async function Page() {
return (
<>
<ComponentGlobal_LoadingPage height="100%"/>
</>
);
}

View File

@@ -0,0 +1,9 @@
import ComponentGlobal_LoadingPage from "@/app_modules/component_global/loading_page";
export default async function Page() {
return (
<>
<ComponentGlobal_LoadingPage height="100vh"/>
</>
);
}

View File

@@ -1,5 +1,8 @@
import { Event_SplashScreen } from "@/app_modules/event";
export default async function Page() {
// await new Promise((a, b) => {
// setTimeout(a, 1000);
// });
return <Event_SplashScreen />;
}