Skip to content

Commit 9094e94

Browse files
committed
Use inertia link tag instead of html a tag
1 parent 27c8693 commit 9094e94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ export default function AuthCardLayout({
1414
return (
1515
<div className="bg-muted flex min-h-svh flex-col items-center justify-center gap-6 p-6 md:p-10">
1616
<div className="flex w-full max-w-md flex-col gap-6">
17-
<a href="#" className="flex items-center gap-2 self-center font-medium">
17+
<Link href={route('home')} className="flex items-center gap-2 self-center font-medium">
1818
<div className="flex h-9 w-9 items-center justify-center">
1919
<AppLogoIcon className="size-9 fill-current text-black dark:text-white" />
2020
</div>
21-
</a>
21+
</Link>
2222

2323
<div className="flex flex-col gap-6">
2424
<Card className="rounded-xl">

0 commit comments

Comments
 (0)