Skip to content

Commit a438aed

Browse files
committed
Adding a few more small updates
1 parent dc0a61f commit a438aed

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

resources/js/layouts/auth-layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import AuthLayoutTemplate from '@/layouts/auth/auth-simple-layout';
1+
import AuthLayoutTemplate from '@/layouts/auth/auth-split-layout';
22

33
export default function AuthLayout({ children, title, description, ...props }: { children: React.ReactNode; title: string; description: string }) {
44
return (

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

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

1111
export default function AuthSplitLayout({ children, title, description }: AuthLayoutProps) {
12-
const { quote } = usePage<SharedData>().props;
12+
const { name, 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 size-9 fill-current text-white" />
19+
<AppLogoIcon className="mr-2 size-8 fill-current text-white" />
20+
{ name }
2021
</Link>
2122
{quote && (
2223
<div className="relative z-20 mt-auto">

0 commit comments

Comments
 (0)