feat: fix favicon implementation for Google search and PWA support
- Add background to favicon.svg (RGB 38,45,59) - Generate all required PNG sizes (192x192, 512x512, 180x180) - Create site.webmanifest with proper PWA config - Standardize favicon links across 116 HTML files - Fix incorrect MIME types in 50+ pages
This commit is contained in:
@@ -43,10 +43,10 @@
|
||||
<title>Compare PDFs - BentoPDF</title>
|
||||
<meta name="description"
|
||||
content="Compare two PDF files side by side or with overlay. See differences between PDF versions. Free, secure, and runs entirely in your browser.">
|
||||
<link rel="icon" type="image/svg+xml" href="/images/favicon.svg" />
|
||||
<link rel="icon" type="image/png" href="/images/favicon.png" />
|
||||
<link rel="apple-touch-icon" href="/images/favicon.png" />
|
||||
<link rel="icon" href="/favicon.ico" sizes="any" />
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="alternate" hreflang="en" href="/en/compare-pdfs.html" />
|
||||
<link rel="alternate" hreflang="de" href="/de/compare-pdfs.html" />
|
||||
<link rel="alternate" hreflang="vi" href="/vi/compare-pdfs.html" />
|
||||
@@ -82,6 +82,16 @@
|
||||
max-height: 70vh;
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- Web App Manifest -->
|
||||
<link rel="manifest" href="/site.webmanifest" />
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="icon" type="image/svg+xml" href="/images/favicon.svg" />
|
||||
<link rel="icon" type="image/png" sizes="192x192" href="/images/favicon-192x192.png" />
|
||||
<link rel="icon" type="image/png" sizes="512x512" href="/images/favicon-512x512.png" />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon.png" />
|
||||
<link rel="icon" href="/favicon.ico" sizes="32x32" />
|
||||
</head>
|
||||
|
||||
<body class="antialiased bg-gray-900">
|
||||
|
||||
Reference in New Issue
Block a user