Skip to content

Commit 108963e

Browse files
authored
Adding updated favicons for React starter kit (#107)
1 parent 9a0cc25 commit 108963e

File tree

6 files changed

+9
-2
lines changed

6 files changed

+9
-2
lines changed

public/apple-touch-icon.png

1.7 KB
Loading

public/favicon.ico

4.19 KB
Binary file not shown.

public/favicon.svg

Lines changed: 3 additions & 0 deletions
Loading

resources/js/components/app-header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const rightNavItems: NavItem[] = [
3131
},
3232
{
3333
title: 'Documentation',
34-
href: 'https://laravel.com/docs/starter-kits',
34+
href: 'https://laravel.com/docs/starter-kits#react',
3535
icon: BookOpen,
3636
},
3737
];

resources/js/components/app-sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const footerNavItems: NavItem[] = [
2323
},
2424
{
2525
title: 'Documentation',
26-
href: 'https://laravel.com/docs/starter-kits',
26+
href: 'https://laravel.com/docs/starter-kits#react',
2727
icon: BookOpen,
2828
},
2929
];

resources/views/app.blade.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232

3333
<title inertia>{{ config('app.name', 'Laravel') }}</title>
3434

35+
<link rel="icon" href="/favicon.ico" sizes="any">
36+
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
37+
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
38+
3539
<link rel="preconnect" href="https://fonts.bunny.net">
3640
<link href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600" rel="stylesheet" />
3741

0 commit comments

Comments
 (0)