2023-08-16 23:29:22 +08:00
|
|
|
export default function Head() {
|
|
|
|
return (
|
|
|
|
<>
|
2023-08-16 23:55:57 +08:00
|
|
|
<link
|
|
|
|
rel="apple-touch-icon"
|
|
|
|
sizes="76x76"
|
|
|
|
href="/static/favicons/apple-touch-icon.png"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/png"
|
|
|
|
sizes="32x32"
|
|
|
|
href="/static/favicons/favicon-32x32.png"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/png"
|
|
|
|
sizes="16x16"
|
|
|
|
href="/static/favicons/favicon-16x16.png"
|
|
|
|
/>
|
2023-08-16 23:29:22 +08:00
|
|
|
<link rel="manifest" href="/static/favicons/site.webmanifest" />
|
2023-08-16 23:55:57 +08:00
|
|
|
<link
|
|
|
|
rel="mask-icon"
|
|
|
|
href="/static/favicons/safari-pinned-tab.svg"
|
|
|
|
color="#5bbad5"
|
|
|
|
/>
|
2023-08-16 23:29:22 +08:00
|
|
|
<meta name="msapplication-TileColor" content="#000000" />
|
2023-08-16 23:55:57 +08:00
|
|
|
<meta
|
|
|
|
name="theme-color"
|
|
|
|
media="(prefers-color-scheme: light)"
|
|
|
|
content="#fff"
|
|
|
|
/>
|
|
|
|
<meta
|
|
|
|
name="theme-color"
|
|
|
|
media="(prefers-color-scheme: dark)"
|
|
|
|
content="#000"
|
|
|
|
/>
|
2023-08-16 23:29:22 +08:00
|
|
|
<link rel="alternate" type="application/rss+xml" href="/feed.xml" />
|
|
|
|
<meta content="width=device-width, initial-scale=1" name="viewport" />
|
|
|
|
</>
|
2023-08-16 23:55:57 +08:00
|
|
|
);
|
2023-08-16 23:29:22 +08:00
|
|
|
}
|