-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.17 KB
/
index.html
File metadata and controls
38 lines (38 loc) · 1.17 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Engramma - design tokens app</title>
<meta
name="description"
content="An app to manage standard based design tokens and convert them to CSS or SCSS variables"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://engramma.dev/" />
<meta property="og:image" content="./logo.png" />
<meta name="twitter:card" content="summary_large_image" />
<link rel="stylesheet" href="./src/app.css" />
<!-- Privacy-friendly analytics by Plausible -->
<script
async
src="https://plausible.io/js/pa-lqFhwhQS8pPxKZ9mW4uH-.js"
></script>
<script>
((window.plausible =
window.plausible ||
function () {
(plausible.q = plausible.q || []).push(arguments);
}),
(plausible.init =
plausible.init ||
function (i) {
plausible.o = i || {};
}));
plausible.init();
</script>
</head>
<body>
<script type="module" src="./src/main.ts"></script>
</body>
</html>