-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (47 loc) · 1.72 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link
rel="shortcut icon"
type="image/ico"
href="/src/assets/favicon.ico"
/>
<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=Mulish:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<title>Flow Node Editor</title>
<meta name="description" content="Flow is a simple node editor." />
<!-- ˜150 chars -->
<meta property="og:title" content="Flow" />
<meta
property="og:description"
content="Flow is a simple node editor that allows you to add, delete and join nodes"
/>
<!-- ˜300 chars -->
<meta property="og:site_name" content="Flow Node Editor" />
<meta property="og:locale" content="en_GB" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://node-flow-editor.netlify.app" />
<meta property="og:image" content="/assets/open-graph.webp" />
<!-- 200x200px - 1200x1200px -->
<meta name="twitter:card" content="/assets/open-graph.webp" />
<meta name="twitter:site" content="Flow Node Editor" />
<meta name="twitter:title" content="Flow" />
<meta
name="twitter:description"
content="Flow is a simple node editor that allows you to add, delete and join nodes"
/>
<meta name="twitter:image" content="/assets/open-graph.webp" />
</head>
<body>
<noscript>You need to enable JavaScript to run Flow Node Editor.</noscript>
<div id="root"></div>
<script src="/src/index.tsx" type="module"></script>
</body>
</html>