-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (34 loc) · 1.66 KB
/
index.html
File metadata and controls
35 lines (34 loc) · 1.66 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<title>Web Serial Plotter</title>
<link rel="canonical" href="https://web-serial-plotter.atomic14.com/" />
<meta name="description" content="Web Serial Plotter – real-time plotting of data from Arduino devices over the Web Serial API. Connect, visualize, and export your data in the browser." />
<meta name="theme-color" content="#0a0a0a" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Web Serial Plotter" />
<meta property="og:description" content="Real-time plotting of data from Arduino devices over the Web Serial API." />
<meta property="og:url" content="https://web-serial-plotter.atomic14.com/" />
<!-- Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Web Serial Plotter" />
<meta name="twitter:description" content="Real-time plotting of data from Arduino devices over the Web Serial API." />
<link rel="manifest" href="/manifest.webmanifest" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WSZ06C97D0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WSZ06C97D0');
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>