File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
resources/js/layouts/auth Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -9,15 +9,14 @@ interface AuthLayoutProps {
9
9
}
10
10
11
11
export default function AuthSplitLayout ( { children, title, description } : AuthLayoutProps ) {
12
- const { name , quote } = usePage < SharedData > ( ) . props ;
12
+ const { quote } = usePage < SharedData > ( ) . props ;
13
13
14
14
return (
15
15
< div className = "relative grid h-dvh flex-col items-center justify-center px-8 sm:px-0 lg:max-w-none lg:grid-cols-2 lg:px-0" >
16
16
< div className = "bg-muted relative hidden h-full flex-col p-10 text-white lg:flex dark:border-r" >
17
17
< div className = "absolute inset-0 bg-zinc-900" />
18
18
< Link href = { route ( 'home' ) } className = "relative z-20 flex items-center text-lg font-medium" >
19
- < AppLogoIcon className = "mr-2 h-6 fill-current text-white" />
20
- { name }
19
+ < AppLogoIcon className = "mr-2 size-10 fill-current text-white" />
21
20
</ Link >
22
21
{ quote && (
23
22
< div className = "relative z-20 mt-auto" >
You can’t perform that action at this time.
0 commit comments