34 lines
1.3 KiB
HTML
34 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Work Orders</title>
|
|
|
|
<!-- Fonts: Inter (UI) + JetBrains Mono (WO numbers) -->
|
|
<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&display=swap" rel="stylesheet">
|
|
|
|
<!-- Icons: Lucide (tree-shakeable, no API key) -->
|
|
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.min.js"></script>
|
|
|
|
<!-- Leaflet (Phase 2 — maps) -->
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9/dist/leaflet.css">
|
|
<script src="https://unpkg.com/leaflet@1.9/dist/leaflet.js" defer></script>
|
|
|
|
<!-- Chart.js (Phase 4 — dashboard charts) -->
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js@4/dist/chart.umd.min.js" defer></script>
|
|
|
|
<!-- App styles -->
|
|
<link rel="stylesheet" href="/styles/reset.css">
|
|
<link rel="stylesheet" href="/styles/global.css">
|
|
<link rel="stylesheet" href="/styles/typography.css">
|
|
<link rel="stylesheet" href="/styles/forms.css">
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/app.mjs"></script>
|
|
</body>
|
|
</html>
|