@@ -16,6 +16,7 @@ export default function LoginPage() {
16
16
return (
17
17
< main >
18
18
< div className = "container relative h-[800px] flex-col items-center justify-center md:grid lg:max-w-none lg:grid-cols-2 lg:px-0" >
19
+ { /* Intentionally hidden for now */ }
19
20
< Link
20
21
href = "#"
21
22
className = { cn (
@@ -25,11 +26,13 @@ export default function LoginPage() {
25
26
>
26
27
Sign Up
27
28
</ Link >
29
+
30
+ { /* Column 1 */ }
28
31
< div className = "relative hidden h-full flex-col bg-muted p-10 text-white lg:flex dark:border-r" >
29
32
< div className = "absolute inset-0 bg-zinc-900" />
30
33
< div className = "relative z-20 flex items-center text-lg font-medium" >
31
34
< Link
32
- href = "https://www.refactorcoach .com"
35
+ href = "https://www.refactorgroup .com"
33
36
className = "mr-2 flex items-center space-x-2"
34
37
>
35
38
< div
@@ -52,35 +55,53 @@ export default function LoginPage() {
52
55
</ blockquote >
53
56
</ div >
54
57
</ div >
55
- < div className = "lg:p-8 sm:mt-8" >
56
- < div className = "mx-auto flex w-full flex-col justify-center space-y-6 sm:w-[350px]" >
57
- < div className = "flex flex-col space-y-2 text-center" >
58
+
59
+ { /* Column 2 */ }
60
+ < div className = "mx-auto flex flex-col justify-center mt-16 space-y-8 sm:w-96 lg:mt-0" >
61
+ < div className = "flex flex-col space-y-2 text-center" >
62
+ < div className = "flex items-center justify-center space-x-2" >
63
+ < Link
64
+ href = "https://www.refactorgroup.com"
65
+ className = "flex items-center lg:hidden"
66
+ >
67
+ < div
68
+ className = { cn (
69
+ buttonVariants ( {
70
+ variant : "ghost" ,
71
+ } ) ,
72
+ "w-10 px-0"
73
+ ) }
74
+ >
75
+ < Icons . refactor_logo className = "h-7 w-7" />
76
+ < span className = "sr-only" > Refactor</ span >
77
+ </ div >
78
+ </ Link >
58
79
< h1 className = "text-2xl font-semibold tracking-tight" >
59
80
Sign in to Refactor
60
81
</ h1 >
61
- < p className = "text-sm text-muted-foreground" >
62
- Enter your email & password below to sign in
63
- </ p >
64
82
</ div >
65
- < UserAuthForm />
66
- < p className = "px-8 text-center text-sm text-muted-foreground" >
67
- By clicking continue, you agree to our{ " " }
68
- < Link
69
- href = "/terms"
70
- className = "underline underline-offset-4 hover:text-primary"
71
- >
72
- Terms of Service
73
- </ Link > { " " }
74
- and{ " " }
75
- < Link
76
- href = "/privacy"
77
- className = "underline underline-offset-4 hover:text-primary"
78
- >
79
- Privacy Policy
80
- </ Link >
81
- .
83
+ < p className = "text-sm text-muted-foreground" >
84
+ Enter your email & password below to sign in
82
85
</ p >
83
86
</ div >
87
+ < UserAuthForm />
88
+ < p className = "px-8 text-center text-sm text-muted-foreground" >
89
+ By clicking continue, you agree to our{ " " }
90
+ < Link
91
+ href = "/terms"
92
+ className = "underline underline-offset-4 hover:text-primary"
93
+ >
94
+ Terms of Service
95
+ </ Link > { " " }
96
+ and{ " " }
97
+ < Link
98
+ href = "/privacy"
99
+ className = "underline underline-offset-4 hover:text-primary"
100
+ >
101
+ Privacy Policy
102
+ </ Link >
103
+ .
104
+ </ p >
84
105
</ div >
85
106
</ div >
86
107
</ main >
0 commit comments