|
|
| <!DOCTYPE html> |
| <html lang="en" data-color-scheme="light"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>WRD Tembhu LIS IoT Dashboard</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| <link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" /> |
| <script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script> |
| <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> |
| <style> |
| |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); |
| body { |
| font-family: 'Inter', sans-serif; |
| } |
| ::-webkit-scrollbar { |
| width: 8px; |
| height: 8px; |
| } |
| ::-webkit-scrollbar-track { |
| background: #f1f5f9; |
| } |
| ::-webkit-scrollbar-thumb { |
| background: #cbd5e1; |
| border-radius: 4px; |
| } |
| ::-webkit-scrollbar-thumb:hover { |
| background: #94a3b8; |
| } |
| [data-color-scheme="dark"] ::-webkit-scrollbar-track { |
| background: #1e293b; |
| } |
| [data-color-scheme="dark"] ::-webkit-scrollbar-thumb { |
| background: #475569; |
| } |
| [data-color-scheme="dark"] ::-webkit-scrollbar-thumb:hover { |
| background: #64748b; |
| } |
| </style> |
| <script type="importmap"> |
| { |
| "imports": { |
| "react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/", |
| "react/": "https://aistudiocdn.com/react@^19.2.0/", |
| "react": "https://aistudiocdn.com/react@^19.2.0" |
| } |
| } |
| </script> |
| <link rel="stylesheet" href="/index.css"> |
| </head> |
| <body class="bg-slate-50 dark:bg-slate-900"> |
| <div id="root"></div> |
| <script type="module" src="/index.tsx"></script> |
| </body> |
| </html> |
|
|