-
-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (51 loc) · 1.52 KB
/
Copy pathindex.html
File metadata and controls
51 lines (51 loc) · 1.52 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
http-equiv="X-UA-Compatible"
content="ie=edge"
/>
<meta
name="description"
content="UI graphics editor for embedded screens with pixel perfect code builder and export. Best for Arduino, STM32, ESP32. Converts images to
uint32 and uint8 variables for Adafruit GFX, u8g2 and TFT_eSPI"
/>
<title>Graphics editor and image converter for Arduino, ESP32, Adafruit_GFX, u8g2, TFT_eSPI</title>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/assets/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/assets/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/assets/favicon-16x16.png"
/>
<link
rel="manifest"
href="/assets/site.webmanifest"
/>
</head>
<body class="min-h-[100vh] flex-col flex flex-none">
<div
class="w-full max-w-[1600px] mx-auto font-sans min-h-[600px] flex flex-col flex-grow overflow-hidden"
id="lopaka_app"
></div>
<script
type="module"
src="/src/app.ts"
></script>
</body>
</html>