SEO: Fix structured data validation errors, delete static sitemap, and update indexing scripts

This commit is contained in:
Timo Knuth
2026-01-23 23:10:22 +01:00
parent f3637fc2fe
commit eef4855c1b
147 changed files with 24590 additions and 27027 deletions

View File

@@ -72,9 +72,9 @@ export function BreadcrumbSchema({ items, showUI = false }: BreadcrumbSchemaProp
*/
export function ToolBreadcrumb({ toolName, toolSlug }: { toolName: string; toolSlug: string }) {
const items: BreadcrumbItem[] = [
{ name: 'Home', url: 'https://qrmaster.io/' },
{ name: 'Free QR Code Tools', url: 'https://qrmaster.io/tools' },
{ name: toolName, url: `https://qrmaster.io/tools/${toolSlug}` },
{ name: 'Home', url: 'https://www.qrmaster.net/' },
{ name: 'Free QR Code Tools', url: 'https://www.qrmaster.net/tools' },
{ name: toolName, url: `https://www.qrmaster.net/tools/${toolSlug}` },
];
return <BreadcrumbSchema items={items} showUI={true} />;