Enhance SEO and social metadata for documentation homepage (#4923)

* Add SEO metadata to docs home

Add a robots.txt sitemap directive and JSON-LD SoftwareApplication metadata to the docs homepage to improve search engine discovery and rich results.

* Add social preview metadata

Add Open Graph and Twitter image metadata for the docs site and include a new shared social preview image. Also set the homepage title metadata to match the documentation branding.
This commit is contained in:
Sean (ANGRYxScotsman)
2026-08-09 12:48:15 -05:00
committed by GitHub
parent 19f938e876
commit c817d3329a
4 changed files with 42 additions and 0 deletions
+32
View File
@@ -27,6 +27,38 @@ hero:
link: https://github.com/ChrisTitusTech/winutil
icon: external
variant: secondary
head:
- tag: meta
attrs:
property: og:title
content: Documentation | WinUtil
- tag: meta
attrs:
name: twitter:title
content: Documentation | WinUtil
- tag: script
attrs:
type: application/ld+json
content: |
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "WinUtil",
"description": "Chris Titus Tech's Windows Utility — install apps, apply tweaks, run fixes, and manage Windows from one place.",
"url": "https://winutil.christitus.com/",
"downloadUrl": "https://github.com/ChrisTitusTech/winutil",
"operatingSystem": "Windows",
"applicationCategory": "UtilitiesApplication",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Person",
"name": "Chris Titus Tech"
}
}
---
import { Icon, Code } from '@astrojs/starlight/components';