Skip to content

Commit c2b4eaa

Browse files
committed
pimped the demo page
1 parent e41d81c commit c2b4eaa

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

demo/public/index.html

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,40 @@
66
<title>Debugging</title>
77
<style>
88
body {
9-
font-family: Arial, Helvetica, sans-serif
9+
font-family: Arial, Helvetica, sans-serif;
10+
display: grid;
11+
justify-content: center;
12+
align-content: center;
13+
height: 100vh;
14+
margin: 0;
15+
padding: 0;
16+
text-align: center;
17+
}
18+
19+
#root {
20+
height: 20rem;
21+
width: 20rem;
22+
}
23+
24+
#itsme {
25+
margin-top: 5rem;
1026
}
1127
</style>
28+
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-154354707-2"></script>
29+
<script>
30+
window.dataLayer = window.dataLayer || [];
31+
function gtag() { dataLayer.push(arguments); }
32+
gtag('js', new Date());
33+
34+
gtag('config', 'UA-154354707-2');
35+
</script>
36+
1237
</head>
1338

1439
<body>
1540
<div id="root"></div>
41+
<div id="itsme">Check out more about me on my <a href="https://projectsbydan.com">website</a></div>
42+
<div>Or take a look at my other <a href="https://github.com/projectsbydan">git projects</a></div>
1643
</body>
1744

1845
</html>

0 commit comments

Comments
 (0)