Fix: favicon light/dark mode separate SVG files
parent
fac177da70
commit
d7a70a0e9b
|
|
@ -7,7 +7,6 @@
|
|||
<title>@yield('title', config('app.name'))</title>
|
||||
<link rel="icon" type="image/svg+xml" href="{{ asset('favicon.svg') }}" media="(prefers-color-scheme: light)">
|
||||
<link rel="icon" type="image/svg+xml" href="{{ asset('favicon-dark.svg') }}" media="(prefers-color-scheme: dark)">
|
||||
{{-- <link rel="icon" type="image/svg+xml" href="/favicon.svg">--}}
|
||||
@vite(['resources/css/app.css'])
|
||||
@livewireStyles
|
||||
</head>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,8 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>{{ config('app.name') }}</title>
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
||||
<link rel="icon" type="image/svg+xml" href="{{ asset('favicon.svg') }}" media="(prefers-color-scheme: light)">
|
||||
<link rel="icon" type="image/svg+xml" href="{{ asset('favicon-dark.svg') }}" media="(prefers-color-scheme: dark)">
|
||||
|
||||
<meta property="og:title" content="Aziros — KI-Assistent für deinen Alltag"/>
|
||||
<meta property="og:description" content="Termine, Aufgaben und Aria — jetzt auch als App für iOS und Android."/>
|
||||
|
|
|
|||
Loading…
Reference in New Issue