html update

This commit is contained in:
artie 2023-06-23 12:54:06 +02:00
parent bb51fb2b41
commit 7f9588c9f4
2 changed files with 8 additions and 9 deletions

BIN
src/assets/sakura.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

View File

@ -1,4 +1,6 @@
--- ---
import sakura from "../assets/sakura.png"
interface Props { interface Props {
title: string; title: string;
} }
@ -15,20 +17,17 @@ const { title } = Astro.props;
<title>{title}</title> <title>{title}</title>
<meta name="description" content="a self-taught code archwizard" /> <meta name="description" content="a self-taught code archwizard" />
<meta name="author" content="artie"> <meta name="author" content="artie">
<meta name="theme-color" content="#F472B6" /> <meta name="theme-color" content="#fe7d9d" />
<meta property="og:type" content="website"> <meta property="og:type" content="website">
<meta property="og:site_name" content="artie.moe">
<meta property="og:title" content={title}> <meta property="og:title" content={title}>
<meta property="og:description" content="a self-taught code archwizard"> <meta property="og:description" content="a self-taught code archwizard">
<meta property="og:url" content="https://arti3.dev/"> <meta property="og:url" content="https://artie.moe/">
<meta property="og:image" content="https://arti3.dev/android-chrome-192x192.png" /> <meta property="og:image" content={sakura} />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" /> <link rel="icon" href={sakura} />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" /> <link rel="apple-touch-icon" href={sakura} />
<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="#f472b6" />
<meta name="msapplication-TileColor" content="#e2e2e2" />
<link rel="preconnect" href="https://fonts.googleapis.com" /> <link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />