@@ -16,10 +16,10 @@ export const metadata: Metadata = {
16
16
export default async function Page ( ) {
17
17
return (
18
18
< div className = "grid min-h-dvh md:grid-cols-2" >
19
- < div className = "bg-card/50 hidden place-items-center border-r px-6 md:grid lg:px-0" >
19
+ < div className = "bg-card/50 hidden place-items-center border-r px-8 md:grid lg:px-0" >
20
20
< div className = "flex w-full max-w-100 flex-col gap-4" >
21
21
< ShieldCheck className = "text-muted-foreground size-15 stroke-1" />
22
- < h4 className = "text-4xl font-black" > Your data is yours.</ h4 >
22
+ < h4 className = "text-3xl font-black lg:text-4xl " > Your data is yours.</ h4 >
23
23
< div className = "text-muted-foreground flex gap-2 text-sm" >
24
24
< Box className = "size-5 shrink-0" />
25
25
< span > Gitloom is decentralized and doesn't rely on any cetralized database.</ span >
@@ -38,44 +38,44 @@ export default async function Page() {
38
38
</ div >
39
39
</ div >
40
40
</ div >
41
- < div className = "mx-auto flex w-full max-w-75 flex-col items-center justify-center gap-4 " >
42
- < div className = "flex items-center gap-4" >
41
+ < div className = "grid place- items-center px-4 lg:px-0 " >
42
+ < div className = "flex w-full max-w-75 flex-col items-center justify -center gap-4" >
43
43
< GitloomIcon className = "size-7" />
44
44
< GitloomTextIcon className = "h-5 w-auto" />
45
- </ div >
46
- < span className = "text-muted-foreground text-center text-sm" >
47
- The Git-native CMS for modern content workflows.
48
- </ span >
49
- < div className = "flex w-full flex-col gap-4" >
50
- < form
51
- onSubmit = { async ( ) => {
52
- 'use server' ;
53
- await signIn ( 'github' , {
54
- redirectTo : '/login/success' ,
55
- } ) ;
56
- } }
57
- >
58
- < Button type = "submit" size = { 'default' } className = "w-full" >
59
- < GithubIcon className = "size-5" />
60
- Sign in with Github
45
+ < span className = "text-muted-foreground text-center text-sm" >
46
+ The Git-native CMS for modern content workflows.
47
+ </ span >
48
+ < div className = "flex w-full flex-col gap-4" >
49
+ < form
50
+ onSubmit = { async ( ) => {
51
+ 'use server' ;
52
+ await signIn ( 'github' , {
53
+ redirectTo : '/login/success' ,
54
+ } ) ;
55
+ } }
56
+ >
57
+ < Button type = "submit" size = { 'default' } className = "w-full" >
58
+ < GithubIcon className = "size-5" />
59
+ Sign in with Github
60
+ </ Button >
61
+ </ form >
62
+ < Button size = { 'default' } variant = { 'secondary' } disabled >
63
+ < GitlabIcon className = "fill-foreground size-5" />
64
+ Sign in with Gitlab
61
65
</ Button >
62
- </ form >
63
- < Button size = { 'default' } variant = { 'secondary' } disabled >
64
- < GitlabIcon className = "fill-foreground size-5" />
65
- Sign in with Gitlab
66
- </ Button >
66
+ </ div >
67
+ < span className = "text-muted-foreground mt-4 text-center text-sm" >
68
+ By signing in, you agree to our < br />
69
+ < Link href = { '/legal/terms-of-service' } className = "hover:underline" >
70
+ terms of service
71
+ </ Link > { ' ' }
72
+ and{ ' ' }
73
+ < Link href = { '/legal/privacy-policy' } className = "hover:underline" >
74
+ privacy policy
75
+ </ Link >
76
+ .
77
+ </ span >
67
78
</ div >
68
- < span className = "text-muted-foreground mt-4 text-center text-sm" >
69
- By signing in, you agree to our < br />
70
- < Link href = { '/legal/terms-of-service' } className = "hover:underline" >
71
- terms of service
72
- </ Link > { ' ' }
73
- and{ ' ' }
74
- < Link href = { '/legal/privacy-policy' } className = "hover:underline" >
75
- privacy policy
76
- </ Link >
77
- .
78
- </ span >
79
79
</ div >
80
80
</ div >
81
81
) ;
0 commit comments