[Closes #18] favicon
All checks were successful
Production Build and Deploy / Build (push) Successful in 1m21s
Production Build and Deploy / Deploy (push) Successful in 22s

This commit is contained in:
Liviu Burcusel 2026-01-14 14:44:10 +01:00
parent 7e17984377
commit cc888d29be
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
3 changed files with 24 additions and 0 deletions

View file

@ -19,6 +19,11 @@ export default defineNuxtConfig({
htmlAttrs: {
class: "dark",
},
link: [
{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" },
{ rel: "icon", type: "image/png", href: "/favicon.png" },
{ rel: "icon", type: "image/svg+xml", href: "/favicon.svg" },
],
},
},
devtools: { enabled: true },

BIN
public/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

19
public/favicon.svg Normal file
View file

@ -0,0 +1,19 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 282 282" width="282" height="282">
<style>
circle,
path{fill:none;stroke:#000;stroke-width:15}
path{stroke-width:25}
.white{stroke:#ccc}
.red{stroke:#AD1D25}
.blue{stroke:#1E4785}
</style>
<g transform="translate(50 6)">
<path d="M58 168V70a50 50 0 0 1 50-50h20" class="red"/>
<path d="M58 236v-100a50 50 0 0 1 50-50h20" class="white"/>
<path d="M58 236v-30a50 50 0 0 1 50-50h20" class="blue"/>
<circle cx="142" cy="20" r="18" class="red"/>
<circle cx="142" cy="88" r="18" class="white"/>
<circle cx="142" cy="156" r="18" class="blue"/>
<circle cx="58" cy="250" r="18" class="blue"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 709 B