mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2026-08-12 02:51:16 +10:00
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:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user