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,9 +43,9 @@
|
||||
<title>PDF Layers - Manage OCG Layers - BentoPDF</title>
|
||||
<meta name="description"
|
||||
content="View, toggle, add, and delete Optional Content Groups (OCG) in your PDF files. Free, secure, and runs entirely in your browser.">
|
||||
<link rel="icon" type="image/png" href="/images/favicon.svg" />
|
||||
|
||||
<link href="/src/css/styles.css" rel="stylesheet" />
|
||||
<link rel="icon" href="/favicon.ico" sizes="any" />
|
||||
|
||||
<style>
|
||||
.layers-container {
|
||||
background: #374151;
|
||||
@@ -160,12 +160,20 @@
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.add-layer-form button:hover {
|
||||
background: #4F46E5;
|
||||
}
|
||||
</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