-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
32 lines (32 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link rel="icon" href="./favicon.ico" />
<title>X-Components</title>
<!-- The default font Montserrat, if different font is needed, please remove this and add the new one -->
<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=Bree+Serif&family=Inter:wght@200;400;600&family=Lora:wght@400;600&family=Poppins:wght@200;400;600&display=swap"
rel="stylesheet"
/>
<style>
html,
body {
margin: 0;
height: 100%;
background: lightgrey;
}
</style>
</head>
<body>
<script src="./snippet-script.js"></script>
<script type="module" src="https://assets.motive.co/wysiwyg/wysiwyg.js"></script>
<!-- built files will be auto injected -->
<script type="module" src="./src/main.ts"></script>
<load src="node_modules/@empathyco/x-archetype-utils/dist/home/home-template.html" />
</body>
</html>