@@ -10,25 +10,34 @@ export const metadata: Metadata = {
1010
1111export default function LoginPage ( ) {
1212 return (
13- < div className = "container flex h-screen w-screen flex-col items-center justify-center" >
14- < div className = "mx-auto flex w-full flex-col justify-center space-y-6 sm:w-[350px]" >
15- < div className = "flex flex-col space-y-2 text-center" >
16- < h1 className = "text-2xl font-semibold tracking-tight" > Welcome back</ h1 >
17- < p className = "text-sm text-muted-foreground" >
18- Enter your credentials to sign in to your account
13+ < div className = "flex min-h-screen flex-col bg-black text-white" >
14+ < header className = "border-b border-white/10" >
15+ < div className = "container flex h-16 items-center justify-between" >
16+ < Link href = "/" className = "flex items-center gap-2 font-bold text-orange hover-orange" >
17+ Promply
18+ </ Link >
19+ </ div >
20+ </ header >
21+ < div className = "container flex flex-1 w-screen flex-col items-center justify-center" >
22+ < div className = "mx-auto flex w-full flex-col justify-center space-y-6 sm:w-[350px]" >
23+ < div className = "flex flex-col space-y-2 text-center" >
24+ < h1 className = "text-2xl font-semibold tracking-tight text-white" > Welcome back</ h1 >
25+ < p className = "text-sm text-white/70" >
26+ Enter your credentials to sign in to your account
27+ </ p >
28+ </ div >
29+ < Suspense fallback = { < div > Loading...</ div > } >
30+ < LoginForm />
31+ </ Suspense >
32+ < p className = "px-8 text-center text-sm text-white/70" >
33+ < Link
34+ href = "/auth/register"
35+ className = "hover:text-orange underline underline-offset-4"
36+ >
37+ Don't have an account? Sign Up
38+ </ Link >
1939 </ p >
2040 </ div >
21- < Suspense fallback = { < div > Loading...</ div > } >
22- < LoginForm />
23- </ Suspense >
24- < p className = "px-8 text-center text-sm text-muted-foreground" >
25- < Link
26- href = "/auth/register"
27- className = "hover:text-brand underline underline-offset-4"
28- >
29- Don't have an account? Sign Up
30- </ Link >
31- </ p >
3241 </ div >
3342 </ div >
3443 ) ;
0 commit comments