-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (61 loc) · 3.33 KB
/
index.html
File metadata and controls
66 lines (61 loc) · 3.33 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Glyph - ASCII Art Generator</title>
<meta name="description" content="Transform images into stunning ASCII art with 9 art styles, 8 dithering algorithms, animated FX, and multi-layer compositing. Free, open-source, browser-based." />
<meta name="keywords" content="ascii art, dithering, ascii generator, image to ascii, braille art, halftone, simplex noise, canvas 2d, open source" />
<meta name="author" content="Codeptor" />
<meta name="theme-color" content="#000000" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/favicon.svg" />
<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=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=VT323&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Glyph - ASCII Art Generator" />
<meta property="og:description" content="Transform images into stunning ASCII art with 9 art styles, 8 dithering algorithms, animated FX, and multi-layer compositing." />
<meta property="og:url" content="https://github.com/Codeptor/glyph" />
<meta property="og:image" content="/og-image.png" />
<meta property="og:site_name" content="Glyph" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Glyph - ASCII Art Generator" />
<meta name="twitter:description" content="Transform images into stunning ASCII art with 9 art styles, 8 dithering algorithms, animated FX, and multi-layer compositing." />
<meta name="twitter:image" content="/og-image.png" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Glyph",
"description": "Real-time ASCII art generator with 9 art styles, 8 dithering algorithms, and animated FX.",
"url": "https://github.com/Codeptor/glyph",
"applicationCategory": "DesignApplication",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"9 art styles: Classic ASCII, Braille, Halftone, Line, Particles, and more",
"8 dithering algorithms including Floyd-Steinberg, Bayer, Atkinson, Stucki",
"Animated FX: Simplex noise, CRT with phosphor mask, Matrix Rain, Glitch",
"Multi-layer compositing system",
"Live camera input",
"Export to PNG, HTML, React component, JSON preset"
]
}
</script>
</head>
<body>
<script>
(function(){var t=localStorage.getItem('glyph-theme')||'system';
var r=t==='system'?window.matchMedia('(prefers-color-scheme:dark)').matches?'dark':'light':t;
document.documentElement.className=r;
document.querySelector('meta[name=theme-color]').content=r==='dark'?'#000000':'#f5f5f5'})()
</script>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>