Fixed favicon mis-centering, and higher resolution versions
BIN
public/16x16-favicon.png
Normal file
|
After Width: | Height: | Size: 308 B |
BIN
public/180x180-favicon.png
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
BIN
public/192x192-favicon.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
public/32x32-favicon.png
Normal file
|
After Width: | Height: | Size: 500 B |
BIN
public/48x48-favicon.png
Normal file
|
After Width: | Height: | Size: 785 B |
BIN
public/512x512-favicon.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 662 B |
@@ -15,7 +15,15 @@ const pageEnabled = pathToMetadata(Astro.url.pathname).enabled ?? true;
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<link rel="icon" href="/favicon-solid.png" type="image/png"/>
|
||||
|
||||
<link rel="icon" href="/48x48-favicon.png" type="image/x-icon"/>
|
||||
<link rel="icon" href="/512x512-favicon.png" type="image/png"/>
|
||||
<link rel="icon" href="/192x192-favicon.png" type="image/png"/>
|
||||
<link rel="icon" href="/180x180-favicon.png" type="image/png"/>
|
||||
<link rel="icon" href="/48x48-favicon.png" type="image/png"/>
|
||||
<link rel="icon" href="/32x32-favicon.png" type="image/png"/>
|
||||
<link rel="icon" href="/16x16-favicon.png" type="image/png"/>
|
||||
|
||||
<link rel="sitemap" href="/sitemap-index.xml"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<title>{pageEnabled ? pageTitle : "Corwin Perren"}</title>
|
||||
|
||||