File tree 4 files changed +21
-4
lines changed
4 files changed +21
-4
lines changed Original file line number Diff line number Diff line change
1
+ import { ModeToggle } from '@/components/mode-toggle' ;
1
2
import SignIn from '@/components/sign-in' ;
2
3
3
4
export default function SignInPage ( ) {
4
- return < SignIn /> ;
5
+ return (
6
+ < >
7
+ < SignIn />
8
+ < div className = "absolute top-2 right-2" >
9
+ < ModeToggle />
10
+ </ div >
11
+ </ >
12
+ ) ;
5
13
}
Original file line number Diff line number Diff line change
1
+ import { ModeToggle } from '@/components/mode-toggle' ;
1
2
import SignUp from '@/components/sign-up' ;
2
3
3
4
export default function SignUpPage ( ) {
4
- return < SignUp /> ;
5
+ return (
6
+ < >
7
+ < SignUp />
8
+ < div className = "absolute top-2 right-2" >
9
+ < ModeToggle />
10
+ </ div >
11
+ </ >
12
+ ) ;
5
13
}
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ export default function SignIn() {
36
36
< form
37
37
ref = { formRef }
38
38
action = { handleSignIn }
39
- className = "min-h-screen flex items-center justify-center bg-[url('@/public/loader.svg?height=400 & width = 400 ')] bg-repeat p-4"
39
+ className = "min-h-screen flex items-center justify-center p-4"
40
40
>
41
41
< Card className = "w-full max-w-md shadow-lg" >
42
42
< CardHeader className = "space-y-1 flex flex-col items-center" >
Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ export default function SignUp() {
36
36
< form
37
37
ref = { formRef }
38
38
action = { handleSignUp }
39
- className = "min-h-screen flex items-center justify-center bg-[url('@/public/loader.svg?height=400& width = 400 ')] bg-repeat p-4"
39
+ className = "min-h-screen flex items-center justify-center p-4"
40
+ // bg-[url('@/public/loader.svg?height=400&width=400')] bg-repeat
40
41
>
41
42
< Card className = "w-full max-w-md shadow-lg" >
42
43
< CardHeader className = "space-y-1 flex flex-col items-center" >
You can’t perform that action at this time.
0 commit comments