-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 1.54 KB
/
Copy pathindex.html
File metadata and controls
42 lines (38 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Elecalyzer – AI-Powered Electronic Circuit Troubleshooting Assistant" />
<title>Elecalyzer</title>
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico" />
</head>
<body>
<!-- Custom Title Bar (Electron frameless window) -->
<div id="titlebar">
<div id="titlebar-drag">
<img src="./assets/favicon.ico" alt="" id="titlebar-icon" />
<span id="titlebar-title">Premium Edition | Developed by MEET MISTRY</span>
</div>
<div id="titlebar-controls">
<button id="btn-minimize" class="titlebar-btn" data-tooltip="Minimize">
<svg width="12" height="12" viewBox="0 0 12 12">
<rect y="5" width="12" height="1.5" fill="currentColor" />
</svg>
</button>
<button id="btn-maximize" class="titlebar-btn" data-tooltip="Maximize">
<svg width="12" height="12" viewBox="0 0 12 12">
<rect x="1" y="1" width="10" height="10" rx="1" fill="none" stroke="currentColor" stroke-width="1.5" />
</svg>
</button>
<button id="btn-close" class="titlebar-btn btn-close" data-tooltip="Close">
<svg width="12" height="12" viewBox="0 0 12 12">
<path d="M1 1L11 11M11 1L1 11" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" />
</svg>
</button>
</div>
</div>
<div id="app"></div>
<script type="module" src="./src/main.js"></script>
</body>
</html>