remove ol favicon 🤖
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 9.3 KiB |
Before Width: | Height: | Size: 2.1 KiB |
|
@ -1,9 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square150x150logo src="/mstile-150x150.png"/>
|
||||
<TileColor>#00aba9</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
Before Width: | Height: | Size: 636 B |
Before Width: | Height: | Size: 911 B |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 900 B |
|
@ -1 +0,0 @@
|
|||
<svg version="1" xmlns="http://www.w3.org/2000/svg" width="1118.667" height="1118.667" viewBox="0 0 839.000000 839.000000"><path d="M0 198.5V276h139v442h155V276h143v442h155l.2-79.7.3-79.8 19.5 25c10.7 13.8 22.2 28.6 25.5 33.1 3.3 4.4 22.1 28.8 41.8 54.1l35.8 46.1 9.3-7.1c5.1-4 14.8-11.5 21.6-16.7 6.7-5.2 27.6-21.4 46.4-36 18.8-14.6 36.7-28.5 39.9-31l5.6-4.4-2.6-3.6c-1.5-1.9-11.1-14.3-21.3-27.5-10.2-13.2-19.4-25.2-20.5-26.6-5.3-7-84.5-109.4-119.9-154.8-7.5-9.6-13.3-17.7-13.1-18.2.3-.4 6.5-5.4 13.8-11.1 12.7-9.9 75.6-59.5 94.2-74.3 5-3.9 19.9-15.8 33.2-26.4l24.3-19.3-7.3-9.1c-4-5.1-13.2-16.6-20.3-25.7-7.2-9.1-25.5-32.4-40.8-51.8-15.3-19.3-27.9-35.2-28.1-35.2-.1 0-10.8 8.3-23.6 18.6-12.9 10.2-31.2 24.7-40.8 32.2-9.5 7.5-29.1 23-43.5 34.3l-26.1 20.6-.3-61.4-.2-61.3H0v77.5z"/></svg>
|
Before Width: | Height: | Size: 788 B |
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"name": "Saiblog",
|
||||
"short_name": "Saiblog",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#5c5c5c",
|
||||
"background_color": "#5c5c5c",
|
||||
"display": "standalone"
|
||||
}
|
|
@ -11,19 +11,15 @@ export interface Props {
|
|||
image?: string
|
||||
}
|
||||
|
||||
const { title, description, image = '/android-chrome-192x192.png' } = Astro.props
|
||||
const { title, description } = Astro.props
|
||||
---
|
||||
|
||||
<!-- Global Metadata -->
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
||||
<link rel="manifest" href="/site.webmanifest" />
|
||||
<link rel="mask-icon" href="safari-pinned-tab.svg" color="" />
|
||||
<link rel="shortcut icon" href="favicon.ico" />
|
||||
|
||||
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🤖</text></svg>">
|
||||
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
|
||||
<!-- Primary Meta Tags -->
|
||||
|
@ -36,13 +32,13 @@ const { title, description, image = '/android-chrome-192x192.png' } = Astro.prop
|
|||
<meta property="og:url" content={Astro.url} />
|
||||
<meta property="og:title" content={title} />
|
||||
<meta property="og:description" content={description} />
|
||||
<meta property="og:image" content={new URL(image, Astro.url)} />
|
||||
<!-- <meta property="og:image" content={new URL(image, Astro.url)} /> -->
|
||||
|
||||
<!-- Twitter -->
|
||||
<meta property="twitter:card" content="summary_large_image" />
|
||||
<meta property="twitter:url" content={Astro.url} />
|
||||
<meta property="twitter:title" content={title} />
|
||||
<meta property="twitter:description" content={description} />
|
||||
<meta property="twitter:image" content={new URL(image, Astro.url)} />
|
||||
<!-- <meta property="twitter:image" content={new URL(image, Astro.url)} /> -->
|
||||
|
||||
<ViewTransitions />
|
||||
|
|