1877963f15
Mise en place de la structure de base du frontend HomeHub : React 18, Vite 5, TypeScript strict, React Router v6, Tailwind CSS et vite-plugin-pwa installés. Composants placeholder Layout et HomePage pour que le build compile sans erreur. Build de production vérifié (dist/ généré, 0 erreur TS). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
848 B
HTML
19 lines
848 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" />
|
|
<title>HomeHub</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|