Deskripsi:
- Feature splash screen
- Create login page
This commit is contained in:
2023-10-02 09:21:44 +08:00
parent 6b777f905a
commit 494b65418d
9 changed files with 82 additions and 15 deletions

View File

@@ -0,0 +1,9 @@
import { Login } from "@/app_modules/auth";
export default function Page() {
return (
<>
<Login />
</>
);
}

View File

@@ -1,7 +1,12 @@
import { SplashScreen } from "@/app_modules/auth";
import { useShallowEffect } from "@mantine/hooks";
import { useRouter } from "next/navigation";
import { useState } from "react";
export default function Page(){
return<>
<SplashScreen/>
export default function PageSplash() {
return (
<>
<SplashScreen />
</>
}
);
}