-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
52 lines (50 loc) · 1.86 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Advanced Cockpit Emulator v3</title>
<!-- React DevTools -->
<script src="http://localhost:8097"></script>
</head>
<body>
<div data-tauri-drag-region class="titlebar">
<span class="titlebar-title">Advanced Cockpit Emulator</span>
<div class="titlebar-controls">
<button id="titlebar-minimize">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
viewBox="0 0 24 24"
>
<line x1="5" x2="19" y1="12" y2="12"></line>
</svg>
</button>
<button id="titlebar-maximize" disabled>
<svg
xmlns="http://www.w3.org/2000/svg"
width="14"
height="14"
viewBox="0 0 24 24"
>
<rect width="18" height="18" x="3" y="3" rx="2" ry="2"></rect>
</svg>
</button>
<button id="titlebar-close">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
viewBox="0 0 24 24"
>
<line x1="18" x2="6" y1="6" y2="18"></line>
<line x1="6" x2="18" y1="6" y2="18"></line>
</svg>
</button>
</div>
</div>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>