Add user database migration, core reusable components, and layout structure
This commit is contained in:
+21
-7
@@ -2,18 +2,32 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<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">
|
||||
|
||||
<!-- Keycloak JS adapter (served by Keycloak itself) -->
|
||||
<script src="http://localhost:8180/js/keycloak.js"></script>
|
||||
<link rel="stylesheet" href="/styles/typography.css">
|
||||
<link rel="stylesheet" href="/styles/forms.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">
|
||||
<p style="padding:2rem;color:#64748b">Connecting to authentication server...</p>
|
||||
</div>
|
||||
<div id="root"></div>
|
||||
<script type="module" src="/app.mjs"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user