-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
40 lines (32 loc) · 1.49 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
<!doctype html>
<html lang="en">
<head>
<!-- HTML Meta Tags -->
<title>Bambu LabelGen</title>
<meta name="description" content="A utility to generate Bambu Lab style filament labels">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://bambu-labelgen.socuul.dev">
<meta property="og:type" content="website">
<meta property="og:title" content="Bambu LabelGen">
<meta property="og:description" content="A utility to generate Bambu Lab style filament labels">
<meta property="og:image" content="https://bambu-labelgen.socuul.dev/favicon.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary">
<meta property="twitter:domain" content="bambu-labelgen.socuul.dev">
<meta property="twitter:url" content="https://bambu-labelgen.socuul.dev">
<meta name="twitter:title" content="Bambu LabelGen">
<meta name="twitter:description" content="A utility to generate Bambu Lab style filament labels">
<meta name="twitter:image" content="https://bambu-labelgen.socuul.dev/favicon.png">
<!-- Discord Meta Tags -->
<meta name="theme-color" content="#06AE42">
<!-- Favicon -->
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>