windows-iso-downloader/frontend/index.html
Shekhar Vaidya 86da27cb8c feat(frontend): add per-page SEO, 404 page, OG tags, and sitemap updates
- Replace react-helmet-async (React 19 incompatible) with native React 19
  document metadata hoisting across all pages
- Add per-page <title>, <meta name="description">, <link rel="canonical">,
  og:title, og:description, og:url to HomePage, ProductsPage, ProductDetailPage,
  AboutPage, DisclaimerPage, PrivacyPolicyPage
- Add JSON-LD SoftwareApplication schema to HomePage and BreadcrumbList to
  ProductDetailPage
- Add 404 NotFoundPage with noindex meta and canonical to home
- Add og:site_name, og:image, og:type, twitter:card/title/description/image
  to index.html as static fallback; remove duplicate static canonical
- Update sitemap.xml with product IDs 3321, 3324 and lastmod dates
- Add product screenshots to README and update description
- Add og-image.png placeholder

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-12 20:35:48 +05:30

25 lines
1.4 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Windows ISO Downloader | Official Microsoft Images</title>
<meta name="description" content="Download official Microsoft Windows ISO files for Windows 11, 10, and 8.1. Fast, free, no registration required." />
<meta property="og:site_name" content="MSDL — Windows ISO Downloader" />
<meta property="og:title" content="Windows ISO Downloader | Official Microsoft Images" />
<meta property="og:description" content="Download official Microsoft Windows ISO files. Fast, free, no registration." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://msdl.tech-latest.com/" />
<meta property="og:image" content="https://msdl.tech-latest.com/og-image.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Windows ISO Downloader | Official Microsoft Images" />
<meta name="twitter:description" content="Download official Microsoft Windows ISO files. Fast, free, no registration." />
<meta name="twitter:image" content="https://msdl.tech-latest.com/og-image.png" />
<meta name="theme-color" content="#111113" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>