-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (44 loc) · 1.91 KB
/
index.html
File metadata and controls
50 lines (44 loc) · 1.91 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="”robots”" content="index, follow" />
<link rel="icon" type="image/x-icon" href="/favicon-96x96.png" />
<!--Basic meta info -->
<meta name="keywords" content="Neo4j, GraphQL, Toolbox, Developer UI" />
<meta name="author" content="Neo4j, inc." />
<meta name="description" content="Developer UI For Neo4j GraphQL" />
<!--OpenGraph meta -->
<meta property="og:title" content="Neo4j GraphQL Toolbox" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Developer UI For Neo4j GraphQL" />
<meta property="og:url" content="https://graphql-toolbox.neo4j.io" />
<meta property="og:image" content="https://graphql-toolbox.neo4j.io/icon.png" />
<!--Twitter meta -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@neo4j" />
<meta name="twitter:title" content="Neo4j GraphQL Toolbox" />
<meta name="twitter:description" content="Developer UI For Neo4j GraphQL" />
<meta name="twitter:image" content="https://graphql-toolbox.neo4j.io/icon.png" />
<title>Neo4j GraphQL Toolbox</title>
<style>
* {
padding: 0;
margin: 0;
}
html,
body {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>