Skip to content

Commit a2aa1ee

Browse files
committed
Fix Google Search appearance: site name, logo, and favicon
- Add domain fallback to WebSite alternateName array per Google docs - Fix Organization name from 'Seqra Team' to 'OpenTaint' for consistent signals - Add 512x512 logo.png with solid white background for Organization structured data - Regenerate apple-touch-icon.png with full logo on white background - Add sameAs links and 512x512 icon to site.webmanifest
1 parent 1780760 commit a2aa1ee

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

public/apple-touch-icon.png

1.07 KB
Loading

public/logo.png

15.8 KB
Loading

public/site.webmanifest

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "OpenTaint",
3-
"short_name": "opentaint",
3+
"short_name": "OpenTaint",
44
"icons": [
55
{
66
"src": "/favicon.svg",
@@ -11,6 +11,11 @@
1111
"src": "/apple-touch-icon.png",
1212
"sizes": "180x180",
1313
"type": "image/png"
14+
},
15+
{
16+
"src": "/logo.png",
17+
"sizes": "512x512",
18+
"type": "image/png"
1419
}
1520
],
1621
"theme_color": "#CA2121",

src/pages/index.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ const structuredData = [
1313
"@context": "https://schema.org",
1414
"@type": "WebSite",
1515
name: siteConfig.title,
16-
alternateName: "opentaint",
16+
alternateName: ["opentaint", "opentaint.org"],
1717
url: siteConfig.url,
1818
},
1919
{
2020
"@context": "https://schema.org",
2121
"@type": "Organization",
22-
name: siteConfig.author,
22+
name: siteConfig.title,
2323
url: siteConfig.url,
24-
logo: `${siteConfig.url}/apple-touch-icon.png`,
24+
logo: `${siteConfig.url}/logo.png`,
2525
sameAs: [
2626
siteConfig.github,
2727
siteConfig.discord,

0 commit comments

Comments
 (0)