metatags update

This commit is contained in:
Artem 2023-05-23 15:20:02 +02:00
parent 54d8a102e4
commit 2143f19848

View File

@ -11,23 +11,30 @@ const { title } = Astro.props;
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>{title}</title>
<meta name="description" content="a self-taught code archwizard" />
<meta name="author" content="artie">
<meta name="theme-color" content="#F472B6" />
<meta property="og:type" content="website">
<meta property="og:title" content={title}>
<meta property="og:description" content="a self-taught code archwizard">
<meta property="og:url" content="https://arti3.dev/">
<meta property="og:image" content="https://arti3.dev/android-chrome-192x192.png" />
<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="#f472b6" />
<meta name="msapplication-TileColor" content="#e2e2e2" />
<meta name="theme-color" content="#F472B6" />
<meta name="description" content="a self-taught code archwizard" />
<meta property="og:site_name" content="artie" />
<meta property="og:image" content="https://arti3.dev/android-chrome-192x192.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@700&display=swap" rel="stylesheet" />
<title>{title}</title>
</head>
<body class="bg-zinc-900 h-screen text-gray-100 flex flex-col justify-center items-center">
<slot />