04249e0033
Design: Geometrisches Haus-Motiv auf diagonal-blauem Gradient (#3B9FFF → #0A7AFF → #1847C8), Glasmorphismus-Schimmer, subtiler Drop-Shadow. Fenster und Tür als transparente Cutouts (Gradient scheint durch). Schornstein als architektonisches Detail. Erstellt mit SVG + librsvg. Dateien: - public/icons/icon-192.png (13 KB, maskable) - public/icons/icon-512.png (46 KB, maskable) - public/icons/apple-touch-icon.png (12 KB, 180×180) - public/icons/favicon-32.png (1.4 KB) - public/favicon.ico (5.4 KB, 16+32 multi-size) - public/index.html: apple-touch-icon + favicon-Links ergänzt - public/manifest.json: apple-touch-icon (180×180) im icons-Array - public/sw.js: Cache-Version auf v4 erhöht, neue Icons vorab gecacht Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
67 lines
2.6 KiB
HTML
67 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
|
<meta name="theme-color" content="#007AFF" />
|
|
<meta name="description" content="Oikos — Familienplaner" />
|
|
<title>Oikos</title>
|
|
|
|
<!-- PWA -->
|
|
<link rel="manifest" href="/manifest.json" />
|
|
<link rel="apple-touch-icon" href="/icons/apple-touch-icon.png" />
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32.png" />
|
|
|
|
<!-- DNS-Prefetch + Preconnect für externe Ressourcen -->
|
|
<link rel="preconnect" href="https://unpkg.com" crossorigin />
|
|
<link rel="dns-prefetch" href="https://openweathermap.org" />
|
|
|
|
<!-- Preload: kritische Skripte (frühzeitig laden, bevor Parser sie findet) -->
|
|
<link rel="preload" href="/api.js" as="script" crossorigin />
|
|
<link rel="preload" href="/router.js" as="script" crossorigin />
|
|
|
|
<!-- Styles -->
|
|
<link rel="stylesheet" href="/styles/tokens.css" />
|
|
<link rel="stylesheet" href="/styles/reset.css" />
|
|
<link rel="stylesheet" href="/styles/layout.css" />
|
|
<link rel="stylesheet" href="/styles/login.css" />
|
|
<link rel="stylesheet" href="/styles/dashboard.css" />
|
|
<link rel="stylesheet" href="/styles/tasks.css" />
|
|
<link rel="stylesheet" href="/styles/shopping.css" />
|
|
<link rel="stylesheet" href="/styles/meals.css" />
|
|
<link rel="stylesheet" href="/styles/calendar.css" />
|
|
<link rel="stylesheet" href="/styles/notes.css" />
|
|
<link rel="stylesheet" href="/styles/contacts.css" />
|
|
<link rel="stylesheet" href="/styles/budget.css" />
|
|
<link rel="stylesheet" href="/styles/settings.css" />
|
|
|
|
<!-- Lucide Icons (CDN) -->
|
|
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<!-- App-Shell — wird durch JavaScript gefüllt -->
|
|
<div id="app" class="app-shell">
|
|
<!-- Skeleton-Loading während Initialisierung -->
|
|
<div id="app-loading" class="app-loading" aria-live="polite" aria-label="Lade Oikos…">
|
|
<div class="app-loading__logo">Oikos</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Module (ES-Module, kein Bundler) -->
|
|
<script type="module" src="/api.js"></script>
|
|
<script type="module" src="/router.js"></script>
|
|
|
|
<!-- Service Worker registrieren -->
|
|
<script>
|
|
if ('serviceWorker' in navigator) {
|
|
window.addEventListener('load', () => {
|
|
navigator.serviceWorker.register('/sw.js').catch((err) => {
|
|
console.warn('[SW] Registrierung fehlgeschlagen:', err);
|
|
});
|
|
});
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|