134678a6f1
- Favicon SVG maison Gruvbox orange sur fond sombre - TodoForm accepte initialValues et submitLabel pour l'édition - SwipeableRow détecte le double-tap (< 300ms, sans déplacement) - TodosPage : double-tap mobile / double-clic laptop ouvre l'édition Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
913 B
HTML
20 lines
913 B
HTML
<!doctype html>
|
|
<html lang="fr" data-theme="dark">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#fe8019" />
|
|
<link rel="manifest" href="/manifest.json" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&family=Share+Tech+Mono&display=swap" rel="stylesheet" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<title>HomeHub</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|