Skip to content

Commit

Permalink
chore: add favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
memiljamel committed Sep 19, 2024
1 parent 70edc30 commit 3bcf211
Show file tree
Hide file tree
Showing 11 changed files with 8 additions and 4 deletions.
Binary file added public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
5 changes: 4 additions & 1 deletion resources/views/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>@yield('title') | {{ config('app.name', 'Laravel') }}</title>
<link rel="icon" type="image/x-icon" href="/img/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="{{ asset('apple-touch-icon.png') }}" />
<link rel="icon" type="image/png" sizes="32x32" href="{{ asset('favicon-32x32.png') }}" />
<link rel="icon" type="image/png" sizes="16x16" href="{{ asset('favicon-16x16.png') }}" />
<link rel="manifest" href="{{ asset('site.webmanifest') }}" />
<link rel="stylesheet" type="text/css" href="{{ captcha_layout_stylesheet_url() }}" />
@vite(['resources/css/app.css', 'resources/js/app.js'])
@stack('styles')
Expand Down
2 changes: 1 addition & 1 deletion resources/views/auth/forgot.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<div class="flex flex-col flex-grow-0 w-full h-auto p-4 m-0 relative lg:px-6">
<div class="inline-block p-0 my-4 overflow-hidden relative">
<img class="block w-12 h-auto p-0 mx-auto align-middle" src="" alt="Guest Book"/>
<img class="block w-12 h-auto p-0 mx-auto align-middle" src="{{ asset('android-chrome-512x512.png') }}" alt="Guest Book"/>

<span class="block w-full h-auto p-0 mt-3 headline-5 text-black/[0.87] text-center truncate dark:text-white">
{{ __('Find your account') }}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/auth/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<div class="flex flex-col flex-grow-0 w-full h-auto p-4 m-0 relative lg:px-6">
<div class="inline-block p-0 my-4 overflow-hidden relative">
<img class="block w-12 h-auto p-0 mx-auto align-middle" src="" alt="Guest Book"/>
<img class="block w-12 h-auto p-0 mx-auto align-middle" src="{{ asset('android-chrome-512x512.png') }}" alt="Guest Book"/>

<span class="block w-full h-auto p-0 mt-3 headline-5 text-black/[0.87] text-center truncate dark:text-white">
{{ __('Login to your account') }}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/auth/reset.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<div class="flex flex-col flex-grow-0 w-full h-auto p-4 m-0 relative lg:px-6">
<div class="inline-block p-0 my-4 overflow-hidden relative">
<img class="block w-12 h-auto p-0 mx-auto align-middle" src="" alt="Guest Book"/>
<img class="block w-12 h-auto p-0 mx-auto align-middle" src="{{ asset('android-chrome-512x512.png') }}" alt="Guest Book"/>

<span class="block w-full h-auto p-0 mt-3 headline-5 text-black/[0.87] text-center truncate dark:text-white">
{{ __('Reset your password') }}
Expand Down

0 comments on commit 3bcf211

Please sign in to comment.