-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (55 loc) · 2.11 KB
/
index.html
File metadata and controls
58 lines (55 loc) · 2.11 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
<!doctype html>
<html lang="">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZD8TS2SYBV"></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-ZD8TS2SYBV')
</script>
<meta charset="UTF-8" />
<!-- SEO: description, canonical, Open Graph, Twitter card, theme color -->
<meta
name="description"
content="IconForge — create, edit and export icon assets. Lightweight Vue 3 + TypeScript app for building icons and exporting from SVG/PNG/WebP."
/>
<meta name="author" content="Bassel Aflak" />
<meta name="keywords" content="icon editor, icons, svg, png, export, design, Vue, TypeScript" />
<meta name="robots" content="index, follow" />
<!-- Open Graph / Facebook -->
<meta property="og:title" content="IconForge" />
<meta
property="og:description"
content="Create, edit and export icon assets with IconForge — a lightweight Vue 3 app."
/>
<meta property="og:type" content="website" />
<meta property="og:image" content="/og-image.png" />
<!-- Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="IconForge" />
<meta name="twitter:image" content="/og-image.png" />
<meta
name="twitter:description"
content="Create, edit and export icon assets with IconForge."
/>
<!-- Theme color for mobile browsers -->
<meta name="theme-color" content="#ffffff" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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&display=swap"
rel="stylesheet"
/>
<title>IconForge</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>