We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 957d2e6 commit 3296707Copy full SHA for 3296707
2 files changed
src/layouts/BaseLayout.astro
@@ -37,6 +37,7 @@ const dataBlocks = Array.isArray(structuredData) ? structuredData : [structuredD
37
<meta name="description" content={description} />
38
<meta name="keywords" content={keywords.join(", ")} />
39
<meta name="robots" content={robots} />
40
+ <meta name="application-name" content={siteConfig.title} />
41
<link rel="canonical" href={canonicalUrl} />
42
43
<meta property="og:title" content={pageTitle} />
src/pages/index.astro
@@ -13,6 +13,7 @@ const structuredData = [
13
"@context": "https://schema.org",
14
"@type": "WebSite",
15
name: siteConfig.title,
16
+ alternateName: "OpenTaint",
17
url: siteConfig.url,
18
},
19
{
0 commit comments