forked from pawelgrzybek/snippet-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (67 loc) · 2.22 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
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
67
68
69
70
71
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Pawel Grzybek - https://pawelgrzybek.com" />
<title>snippet generator</title>
<meta
name="description"
content="Snippet generator for Visual Studio Code, Sublime Text and Atom. Enjoy :-)"
/>
<!-- Open graph data -->
<meta property="og:site_name" content="snippet generator" />
<meta property="og:title" content="snippet generator" />
<meta property="og:url" content="/" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="Snippet generator for Visual Studio Code, Sublime Text and Atom. Enjoy :-)"
/>
<meta
property="og:image"
content="https://snippet-generator.app/snippet-generator.jpg"
/>
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@pawelgrzybek" />
<meta name="twitter:creator" content="@pawelgrzybek" />
<meta name="twitter:title" content="snippet generator" />
<meta
name="twitter:description"
content="Snippet generator for Visual Studio Code, Sublime Text and Atom. Enjoy :-)"
/>
<meta
property="og:image"
content="https://snippet-generator.app/snippet-generator.jpg"
/>
<!-- Favicons -->
<link
rel="icon"
type="image/png"
href="https://snippet-generator.app/favicon-32x32.png"
sizes="32x32"
/>
<link
rel="icon"
type="image/png"
href="https://snippet-generator.app/favicon-16x16.png"
sizes="16x16"
/>
<link
rel="shortcut icon"
href="https://snippet-generator.app/favicon.ico"
/>
<link rel="stylesheet" type="text/css" href="./src/style.css" />
<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=Fira+Code:wght@400;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>