-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.56 KB
/
Copy pathindex.html
File metadata and controls
34 lines (34 loc) · 1.56 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
<!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.0" />
<meta
name="description"
content="Line Weaver is a tool for converting images into vectorized line art and generating GCode specialized for pen plotters. This tool runs entirely client-side in your browser."
/>
<meta name="keywords" content="pen plotter, gcode, vectorization, line art, image converter, cnc, grbl, svg, image to gcode" />
<meta name="author" content="Raoul Straczowski" />
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#0a0a0f" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&family=Space+Mono:wght@400;700&display=swap"
rel="stylesheet"
/>
<title>Line Weaver - Image to GCode Converter</title>
<meta property="og:title" content="Line Weaver - Image to GCode Converter" />
<meta
property="og:description"
content="Convert images into vectorized line art and generate G-code for pen plotters. Runs entirely client-side in your browser."
/>
<meta property="og:type" content="website" />
<meta property="og:image" content="/favicon.svg" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>