-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (53 loc) · 2.74 KB
/
index.html
File metadata and controls
65 lines (53 loc) · 2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<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=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<!-- PWA and Mobile Optimization -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="RoadXpert">
<meta name="apple-touch-fullscreen" content="yes">
<meta name="apple-mobile-web-app-orientations" content="portrait">
<!-- Theme Colors -->
<meta name="theme-color" content="rgba(0, 0, 0, 0)">
<meta name="theme-color" media="(prefers-color-scheme: light)" content="rgba(0, 0, 0, 0)">
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="rgba(0, 0, 0, 0)">
<meta name="color-scheme" content="dark">
<!-- Android/Chrome -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="RoadXpert">
<!-- Windows -->
<meta name="msapplication-TileColor" content="rgba(0, 0, 0, 0)">
<meta name="msapplication-navbutton-color" content="rgba(0, 0, 0, 0)">
<!-- Primary PNG favicons for better quality (Chrome priority) -->
<link rel="icon" type="image/png" sizes="32x32" href="/favicon.png?v=3">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png?v=3">
<!-- Standard favicon.ico for IE compatibility -->
<link rel="icon" href="/favicon.ico?v=3">
<link rel="shortcut icon" href="/favicon.ico?v=3">
<!-- Chrome Android icon -->
<link rel="icon" sizes="192x192" href="/favicon.png?v=3">
<!-- iOS home-screen icon -->
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<!-- Safari pinned tabs -->
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000">
<!-- PWA Manifest - placed after icons for Safari compatibility -->
<link rel="manifest" href="/manifest.webmanifest">
<!-- Windows/Microsoft specific -->
<meta name="msapplication-TileImage" content="/pwa-512x512.png">
<title>RoadXpert</title>
<!-- import ONNXRuntime Web from CDN (IIFE)
<script src="https://cdn.jsdelivr.net/npm/onnxruntime-web/dist/ort.min.js"></script> -->
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>