SEO improvements by adding more JSON-LD crap

This commit is contained in:
2025-09-19 12:26:13 +02:00
parent 1196ab20dd
commit d60cbe24d2
6 changed files with 340 additions and 9 deletions

View File

@ -52,6 +52,70 @@
<!-- CSS and Fonts -->
<link rel="stylesheet" href="/static/css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Structured Data for Search Engines -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"@id": "https://{{.Domain}}/#local-business",
"name": "{{.CompanyName}}",
"description": "Contactpagina voor Linux-migratieservice in Het Hogeland.",
"url": "https://{{.Domain}}/contact",
"knowsAbout": [
"Linux",
"Linux migratie",
"Windows 10 end-of-life",
"Ubuntu",
"Linux Mint",
"Fedora",
"Pop!_OS",
"Elementary OS",
"Debian",
"Zorin OS",
"FreeBSD",
"OpenBSD",
"Arch Linux",
"Drivers",
"Office-alternatieven",
"Back-ups",
"Datamigratie",
"Computerhulp",
"Printerinstallatie",
"Software-installatie"
],
"geoCoverage": [
"Gemeente Het Hogeland",
"Groningen",
"Nederland"
],
"telephone": "{{.Phone}}",
"email": "{{.Email}}",
"address": {
"@type": "PostalAddress",
"streetAddress": "{{.Street}}",
"postalCode": "{{.PostalCode}}",
"addressLocality": "{{.Village}}",
"addressCountry": "NL"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "53.36045",
"longitude": "6.46010"
},
"areaServed": [
{ "@type": "GeoCircle", "geoMidpoint": { "@type": "GeoCoordinates", "latitude": "53.36045", "longitude": "6.46010" }, "geoRadius": 30000 },
{ "@type": "Place", "name": "Gemeente Het Hogeland" }
],
"serviceType": "Linux migratie service",
"priceRange": "€",
"image": "https://{{.Domain}}/static/images/TuxAinrom.webp",
"sameAs": [
"https://endof10.org",
"https://nl.wikipedia.org/wiki/Het_Hogeland"
]
}
</script>
</head>
<body>
{{template "header" .}}