Skip to content

Commit 2a6dbc3

Browse files
committed
chore: layouts
1 parent 98c3530 commit 2a6dbc3

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

resources/js/components/app-logo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default function AppLogo() {
77
<AppLogoIcon className="size-5 fill-current text-white dark:text-black" />
88
</div>
99
<div className="ml-1 grid flex-1 text-left text-sm">
10-
<span className="mb-0.5 truncate leading-none font-semibold">Laravel Starter Kit</span>
10+
<span className="mb-0.5 truncate leading-none font-semibold">Larabase</span>
1111
</div>
1212
</>
1313
);

resources/js/pages/auth/forgot-password.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export default function ForgotPassword({ status }: { status?: string }) {
5555

5656
<div className="text-muted-foreground space-x-1 text-center text-sm">
5757
<span>Or, return to</span>
58-
<TextLink href={route('login')}>log in</TextLink>
58+
<TextLink href={route('login')}>sign in</TextLink>
5959
</div>
6060
</div>
6161
</AuthLayout>

resources/js/pages/auth/login.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ export default function Login({ status, canResetPassword }: LoginProps) {
3636
};
3737

3838
return (
39-
<AuthLayout title="Log in to your account" description="Enter your email and password below to log in">
40-
<Head title="Log in" />
39+
<AuthLayout title="Sign in to your account" description="Enter your email and password below to sign in">
40+
<Head title="Sign in" />
4141

4242
<form className="flex flex-col gap-6" onSubmit={submit}>
4343
<div className="grid gap-6">
@@ -92,7 +92,7 @@ export default function Login({ status, canResetPassword }: LoginProps) {
9292

9393
<Button type="submit" className="mt-4 w-full" tabIndex={4} disabled={processing}>
9494
{processing && <LoaderCircle className="h-4 w-4 animate-spin" />}
95-
Log in
95+
Sign in
9696
</Button>
9797
</div>
9898

resources/js/pages/auth/register.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export default function Register() {
110110
<div className="text-muted-foreground text-center text-sm">
111111
Already have an account?{' '}
112112
<TextLink href={route('login')} tabIndex={6}>
113-
Log in
113+
Sign in
114114
</TextLink>
115115
</div>
116116
</form>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { type SharedData } from '@/types';
22
import { Head, Link, usePage } from '@inertiajs/react';
33

4-
export default function Welcome() {
4+
export default function Home() {
55
const { auth } = usePage<SharedData>().props;
66

77
return (
@@ -26,13 +26,13 @@ export default function Welcome() {
2626
href={route('login')}
2727
className="inline-block rounded-sm border border-transparent px-5 py-1.5 text-sm leading-normal text-[#1b1b18] hover:border-[#19140035] dark:text-[#EDEDEC] dark:hover:border-[#3E3E3A]"
2828
>
29-
Log in
29+
Sign in
3030
</Link>
3131
<Link
3232
href={route('register')}
3333
className="inline-block rounded-sm border border-[#19140035] px-5 py-1.5 text-sm leading-normal text-[#1b1b18] hover:border-[#1915014a] dark:border-[#3E3E3A] dark:text-[#EDEDEC] dark:hover:border-[#62605b]"
3434
>
35-
Register
35+
Sign up
3636
</Link>
3737
</>
3838
)}

routes/web.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Illuminate\Support\Facades\Route;
66
use Inertia\Inertia;
77

8-
Route::get('/', fn () => Inertia::render('welcome'))->name('home');
8+
Route::get('/', fn () => Inertia::render('home'))->name('home');
99

1010
Route::middleware(['auth', 'verified'])->group(function (): void {
1111
Route::get('dashboard', fn () => Inertia::render('dashboard'))->name('dashboard');

0 commit comments

Comments
 (0)