feat: add favicon icons in PNG, ICO, and SVG formats

This commit is contained in:
2026-03-06 18:47:17 -06:00
parent d5ec0d25ae
commit f4ad0bd9de
6 changed files with 177 additions and 0 deletions

View File

@@ -27,6 +27,10 @@ export const Route = createRootRoute({
},
{
title: 'Juggernaut Plays Blog'
},
{
name: 'description',
content: 'Juego con cosas y luego hablo de ello.'
}
],
links: [
@@ -45,6 +49,33 @@ export const Route = createRootRoute({
{
rel: 'stylesheet',
href: FONTAWESOME_STYLES
},
{
rel: 'icon',
type: 'image/svg+xml',
href: '/favicon.svg'
},
{
rel: 'icon',
type: 'image/x-icon',
href: '/favicon.ico'
},
{
rel: 'icon',
type: 'image/png',
sizes: '16x16',
href: '/favicon-16x16.png'
},
{
rel: 'icon',
type: 'image/png',
sizes: '32x32',
href: '/favicon-32x32.png'
},
{
rel: 'apple-touch-icon',
sizes: '180x180',
href: '/favicon-apple-touch.png'
}
]
}),