Skip to content

Commit 739201f

Browse files
Bigger Laravel logo and no app name in split layout
1 parent 564fcb2 commit 739201f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

resources/js/layouts/auth/auth-split-layout.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,14 @@ interface AuthLayoutProps {
99
}
1010

1111
export default function AuthSplitLayout({ children, title, description }: AuthLayoutProps) {
12-
const { name, quote } = usePage<SharedData>().props;
12+
const { quote } = usePage<SharedData>().props;
1313

1414
return (
1515
<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">
1616
<div className="bg-muted relative hidden h-full flex-col p-10 text-white lg:flex dark:border-r">
1717
<div className="absolute inset-0 bg-zinc-900" />
1818
<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" />
2120
</Link>
2221
{quote && (
2322
<div className="relative z-20 mt-auto">

0 commit comments

Comments
 (0)