-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (28 loc) · 854 Bytes
/
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
<head>
<meta charset="utf-8" />
<title>Taco Tandem - A blog to share the love of tacos!</title>
<meta name="theme-color" content="#322885" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta
name="viewport"
content="width=device-width,initial-scale=1,shrink-to-fit=no"
/>
<link rel="shortcut icon" type="image/png" href="/favicon.png" />
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-3DCD3DDXHV"
></script>
<script>
function gtag() {
dataLayer.push(arguments);
}
(window.dataLayer = window.dataLayer || []),
gtag('js', new Date()),
gtag('config', 'G-3DCD3DDXHV');
</script>
</head>
<body>
<noscript>You need to enable JavaScript to visit Taco Tandem.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.js"></script>
</body>