Add compass logo with favicon set and quote claim titles in the UI.

Introduces SVG and PNG icon assets with manifest links, and wraps public claim titles in German quotation marks.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Pirmin Hinderling (fedora)
2026-07-07 20:22:28 +02:00
parent 39b90cfb95
commit 6e14f2b266
16 changed files with 75 additions and 6 deletions
+7 -2
View File
@@ -74,8 +74,13 @@ body {
justify-content: center;
width: 1.75rem;
height: 1.75rem;
color: var(--fk-accent);
font-size: 1.15rem;
flex-shrink: 0;
}
.fk-brand-icon img {
display: block;
width: 100%;
height: 100%;
}
.fk-nav-links {
Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 677 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 681 B

+8
View File
@@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" role="img" aria-hidden="true">
<circle cx="16" cy="16" r="14" fill="none" stroke="#0d9488" stroke-width="1.75"/>
<line x1="16" y1="2" x2="16" y2="5.5" stroke="#0d9488" stroke-width="2" stroke-linecap="round"/>
<path fill="#0d9488" d="M16 5 L13.25 16 L16 13.5 L18.75 16 Z"/>
<path fill="#94a3b8" d="M16 27 L13.25 16 L16 18.5 L18.75 16 Z" opacity="0.55"/>
<path fill="none" stroke="#0d9488" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M11 18.25 L14.25 21.5 21 13.75"/>
<circle cx="16" cy="16" r="1.75" fill="#0d9488"/>
</svg>

After

Width:  |  Height:  |  Size: 619 B

+11
View File
@@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" role="img" aria-hidden="true">
<circle cx="32" cy="32" r="28" fill="none" stroke="#0d9488" stroke-width="2.5"/>
<line x1="32" y1="4" x2="32" y2="11" stroke="#0d9488" stroke-width="3" stroke-linecap="round"/>
<line x1="32" y1="53" x2="32" y2="60" stroke="#0d9488" stroke-width="2" stroke-linecap="round" opacity="0.35"/>
<line x1="53" y1="32" x2="60" y2="32" stroke="#0d9488" stroke-width="2" stroke-linecap="round" opacity="0.35"/>
<line x1="4" y1="32" x2="11" y2="32" stroke="#0d9488" stroke-width="2" stroke-linecap="round" opacity="0.35"/>
<path fill="#0d9488" d="M32 10 L26.5 32 L32 27 L37.5 32 Z"/>
<path fill="#94a3b8" d="M32 54 L26.5 32 L32 37 L37.5 32 Z" opacity="0.55"/>
<path fill="none" stroke="#0d9488" stroke-width="2.75" stroke-linecap="round" stroke-linejoin="round" d="M22 36.5 L28.5 43 40 29.5"/>
<circle cx="32" cy="32" r="3.25" fill="#0d9488"/>
</svg>

After

Width:  |  Height:  |  Size: 949 B

+7
View File
@@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
<circle cx="32" cy="32" r="28" fill="none" stroke="#000" stroke-width="4"/>
<path fill="#000" d="M32 10 L26.5 32 L32 27 L37.5 32 Z"/>
<path fill="#000" d="M32 54 L26.5 32 L32 37 L37.5 32 Z" opacity="0.35"/>
<path fill="none" stroke="#000" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" d="M22 36.5 L28.5 43 40 29.5"/>
<circle cx="32" cy="32" r="4" fill="#000"/>
</svg>

After

Width:  |  Height:  |  Size: 457 B

+20
View File
@@ -0,0 +1,20 @@
{
"name": "Faktenkompass",
"short_name": "Faktenkompass",
"description": "Überprüfbare Fakten und Quellen",
"icons": [
{
"src": "img/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "img/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#0d9488",
"background_color": "#f5f5f7",
"display": "standalone"
}