Added wallpaper to the Authentication Page

This commit was merged in pull request #4.
This commit is contained in:
2023-10-19 04:44:38 -07:00
parent c92644222e
commit 5d4cbc7a1c
6 changed files with 36 additions and 26 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ const AuthRoute = ({ children }) => {
const isAuthenticated = true; // In a real application, this would be determined based on the user's authentication status.
if (!isAuthenticated) {
router.push("/auth/");
router.push("/auth/sign-in");
}
}, [router]);