Skip to content

Commit

Permalink
Changed default value for title to 'Timeliner'
Browse files Browse the repository at this point in the history
  • Loading branch information
katsulon committed Nov 26, 2024
1 parent eedcca6 commit 265beee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion timeliner/config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
|
*/

'name' => env('APP_NAME', 'Laravel'),
'name' => env('APP_NAME', 'Timeliner'),

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion timeliner/resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">

<title>{{ config('app.name', 'Laravel') }}</title>
<title>{{ config('app.name', 'Timeliner') }}</title>

<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
Expand Down
2 changes: 1 addition & 1 deletion timeliner/resources/views/layouts/guest.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">

<title>{{ config('app.name', 'Laravel') }}</title>
<title>{{ config('app.name', 'Timeliner') }}</title>

<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
Expand Down

0 comments on commit 265beee

Please sign in to comment.