huhuih
hzgjuigik
This commit is contained in:
144
client/public/favicon-generator.html
Normal file
144
client/public/favicon-generator.html
Normal file
@@ -0,0 +1,144 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Favicon Generator - EmailSorter</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: system-ui, -apple-system, sans-serif;
|
||||
max-width: 800px;
|
||||
margin: 40px auto;
|
||||
padding: 20px;
|
||||
background: #f5f5f5;
|
||||
}
|
||||
.container {
|
||||
background: white;
|
||||
padding: 30px;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
|
||||
}
|
||||
h1 {
|
||||
color: #22c55e;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.preview {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
margin: 30px 0;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.preview-item {
|
||||
text-align: center;
|
||||
padding: 15px;
|
||||
background: #f9f9f9;
|
||||
border-radius: 8px;
|
||||
}
|
||||
.preview-item img {
|
||||
display: block;
|
||||
margin: 0 auto 10px;
|
||||
border: 1px solid #ddd;
|
||||
}
|
||||
.instructions {
|
||||
background: #f0fdf4;
|
||||
border-left: 4px solid #22c55e;
|
||||
padding: 20px;
|
||||
margin: 20px 0;
|
||||
}
|
||||
.instructions h2 {
|
||||
margin-top: 0;
|
||||
color: #16a34a;
|
||||
}
|
||||
.instructions ol {
|
||||
line-height: 1.8;
|
||||
}
|
||||
.download-link {
|
||||
display: inline-block;
|
||||
margin-top: 10px;
|
||||
padding: 10px 20px;
|
||||
background: #22c55e;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
border-radius: 6px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.download-link:hover {
|
||||
background: #16a34a;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>📧 EmailSorter Favicon Generator</h1>
|
||||
<p>Diese Seite hilft dir beim Erstellen der Favicon-Dateien.</p>
|
||||
|
||||
<div class="preview">
|
||||
<div class="preview-item">
|
||||
<img src="/favicon.svg" alt="Favicon SVG" width="64" height="64">
|
||||
<strong>SVG (64x64)</strong><br>
|
||||
<small>Modern, skalierbar</small>
|
||||
</div>
|
||||
<div class="preview-item">
|
||||
<img src="/apple-touch-icon.svg" alt="Apple Touch Icon" width="180" height="180" style="width: 90px; height: 90px;">
|
||||
<strong>Apple Touch (180x180)</strong><br>
|
||||
<small>iOS Home Screen</small>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="instructions">
|
||||
<h2>📋 Anleitung: Favicon-Dateien erstellen</h2>
|
||||
<ol>
|
||||
<li><strong>Gehe zu einem Favicon-Generator:</strong>
|
||||
<ul>
|
||||
<li><a href="https://realfavicongenerator.net/" target="_blank">realfavicongenerator.net</a> (Empfohlen)</li>
|
||||
<li><a href="https://www.zenlytools.com/svg-to-ico" target="_blank">zenlytools.com</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><strong>Lade die SVG-Datei hoch:</strong>
|
||||
<ul>
|
||||
<li>Klicke auf "Select your Favicon image"</li>
|
||||
<li>Wähle <code>favicon.svg</code> aus dem <code>public/</code> Ordner</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><strong>Konfiguriere die Optionen:</strong>
|
||||
<ul>
|
||||
<li>✅ iOS: Apple Touch Icon aktivieren</li>
|
||||
<li>✅ Android Chrome: Manifest aktivieren</li>
|
||||
<li>✅ Windows Metro: Optional</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><strong>Generiere und lade herunter:</strong>
|
||||
<ul>
|
||||
<li>Klicke auf "Generate your Favicons"</li>
|
||||
<li>Lade das ZIP-Archiv herunter</li>
|
||||
<li>Extrahiere alle Dateien in den <code>client/public/</code> Ordner</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><strong>Verifiziere:</strong>
|
||||
<ul>
|
||||
<li>Starte den Dev-Server neu</li>
|
||||
<li>Prüfe den Browser-Tab - das Favicon sollte erscheinen</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
<h2>📁 Benötigte Dateien</h2>
|
||||
<p>Nach der Konvertierung sollten folgende Dateien im <code>public/</code> Ordner sein:</p>
|
||||
<ul>
|
||||
<li>✅ <code>favicon.svg</code> (bereits vorhanden)</li>
|
||||
<li>⏳ <code>favicon.ico</code></li>
|
||||
<li>⏳ <code>favicon-16x16.png</code></li>
|
||||
<li>⏳ <code>favicon-32x32.png</code></li>
|
||||
<li>⏳ <code>apple-touch-icon.png</code></li>
|
||||
<li>⏳ <code>favicon-192x192.png</code></li>
|
||||
<li>⏳ <code>favicon-512x512.png</code></li>
|
||||
</ul>
|
||||
|
||||
<h2>🔗 Nützliche Links</h2>
|
||||
<p>
|
||||
<a href="https://realfavicongenerator.net/" target="_blank" class="download-link">Favicon Generator öffnen</a>
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user