e0cf5f1381
- PWA: manifest.webmanifest + Icons (192/512/180px) + Apple-Touch-Meta-Tags → Web-App lässt sich auf Homebildschirm hinzufügen (iOS/Android) - Desktop: user-select:none global + contextmenu blockiert - BackendChoice: lokaler Modus als Testmodus mit TEST-Badge und Warnung Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
924 B
HTML
Executable File
22 lines
924 B
HTML
Executable File
<!doctype html>
|
|
<html lang="de-CH">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
<link rel="manifest" href="/manifest.webmanifest" />
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#1a1a18" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
|
<meta name="apple-mobile-web-app-title" content="Rapport" />
|
|
<meta name="description" content="Studio-Management für Architekturbüros" />
|
|
<title>Rapport</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|