File tree Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 3
3
' description' ,
4
4
] )
5
5
6
- <div class =" flex w-full flex-col gap-2 text-center" >
7
- <h1 class = " text-xl font-medium dark:text-zinc-200 " >{{ $title } } </h1 >
8
- <p class = " text-center text-sm dark:text-zinc-400 " >{{ $description } } </p >
6
+ <div class =" flex w-full flex-col text-center" >
7
+ <flux:heading size = " xl " >{{ $title } } </flux:heading >
8
+ <flux:subheading >{{ $description } } </flux:subheading >
9
9
</div >
Original file line number Diff line number Diff line change 20
20
21
21
<div class =" relative z-20 mt-auto" >
22
22
<blockquote class =" space-y-2" >
23
- <p class = " text- lg" >&ldquo ; {{ trim ($message ) } }&rdquo ; </p >
24
- <footer class = " text-sm " > {{ trim ($author ) } } </footer >
23
+ <flux:heading size = " lg" >&ldquo ; {{ trim ($message ) } }&rdquo ; </flux:heading >
24
+ <footer >< flux:heading > {{ trim ($author ) } }</ flux:heading > </footer >
25
25
</blockquote >
26
26
</div >
27
27
</div >
Original file line number Diff line number Diff line change @@ -35,14 +35,14 @@ public function logout(Logout $logout): void
35
35
}; ? >
36
36
37
37
<div class =" mt-4 flex flex-col gap-6" >
38
- <div class =" text-center text-sm text-gray-600 " >
38
+ <flux:text class =" text-center" >
39
39
{{ __ (' Please verify your email address by clicking on the link we just emailed to you.' ) } }
40
- </div >
40
+ </flux:text >
41
41
42
42
@if (session (' status' ) == ' verification-link-sent' )
43
- <div class =" font-medium text-center text-sm text-green-600" >
43
+ <flux:text class =" text-center font-medium !dark: text-green-400 ! text-green-600" >
44
44
{{ __ (' A new verification link has been sent to the email address you provided during registration.' ) } }
45
- </div >
45
+ </flux:text >
46
46
@endif
47
47
48
48
<div class =" flex flex-col items-center justify-between space-y-3" >
Original file line number Diff line number Diff line change @@ -81,18 +81,18 @@ public function resendVerificationNotification(): void
81
81
82
82
@if (auth ()-> user () instanceof \Illuminate\Contracts\Auth\ MustVerifyEmail &&! auth ()-> user ()-> hasVerifiedEmail () )
83
83
<div >
84
- <p class =" mt-2 text-sm text-gray-800 " >
84
+ <flux:text class =" mt-4 " >
85
85
{{ __ (' Your email address is unverified.' ) } }
86
86
87
87
<flux:link class =" text-sm cursor-pointer" wire:click.prevent =" resendVerificationNotification" >
88
88
{{ __ (' Click here to re-send the verification email.' ) } }
89
89
</flux:link >
90
- </p >
90
+ </flux:text >
91
91
92
92
@if (session (' status' ) === ' verification-link-sent' )
93
- <p class =" mt-2 text-sm font-medium text-green-600" >
93
+ <flux:text class =" mt-2 font-medium !dark:text-green-400 ! text-green-600" >
94
94
{{ __ (' A new verification link has been sent to your email address.' ) } }
95
- </p >
95
+ </flux:text >
96
96
@endif
97
97
</div >
98
98
@endif
You can’t perform that action at this time.
0 commit comments