Merge pull request #63 from alDuncanson/refactor/index-and-manifest
Updating index and manifest
This commit is contained in:
commit
54b1378458
|
@ -1,14 +1,15 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
|
||||||
|
<head>
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-128154616-1"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-128154616-1"></script>
|
||||||
<script>
|
<script>
|
||||||
window.dataLayer = window.dataLayer || [];
|
window.dataLayer = window.dataLayer || [];
|
||||||
function gtag(){dataLayer.push(arguments);}
|
function gtag() { dataLayer.push(arguments); }
|
||||||
gtag('js', new Date());
|
gtag('js', new Date());
|
||||||
|
|
||||||
gtag('config', 'UA-128154616-1');
|
gtag('config', 'UA-128154616-1');
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
@ -31,26 +32,25 @@
|
||||||
work correctly both with client-side routing and a non-root public URL.
|
work correctly both with client-side routing and a non-root public URL.
|
||||||
Learn how to configure a non-root public URL by running `npm run build`.
|
Learn how to configure a non-root public URL by running `npm run build`.
|
||||||
-->
|
-->
|
||||||
|
<title>Marten Tracker</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
<!--<script>import flamelink from 'flamelink';</script>-->
|
<body>
|
||||||
|
|
||||||
<title>React App</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<noscript>
|
<noscript>
|
||||||
You need to enable JavaScript to run this app.
|
You need to enable JavaScript to run this app.
|
||||||
</noscript>
|
</noscript>
|
||||||
<div id="root"></div>
|
<div id="root"></div>
|
||||||
<!-- Hotjar Tracking Code for https://marten-application.netlify.com/ -->
|
<!-- Hotjar Tracking Code for https://marten-application.netlify.com/ -->
|
||||||
<script>
|
<script>
|
||||||
(function(h,o,t,j,a,r){
|
(function (h, o, t, j, a, r) {
|
||||||
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
|
h.hj = h.hj || function () { (h.hj.q = h.hj.q || []).push(arguments) };
|
||||||
h._hjSettings={hjid:1066756,hjsv:6};
|
h._hjSettings = { hjid: 1066756, hjsv: 6 };
|
||||||
a=o.getElementsByTagName('head')[0];
|
a = o.getElementsByTagName('head')[0];
|
||||||
r=o.createElement('script');r.async=1;
|
r = o.createElement('script'); r.async = 1;
|
||||||
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
|
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
|
||||||
a.appendChild(r);
|
a.appendChild(r);
|
||||||
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
|
})(window, document, 'https://static.hotjar.com/c/hotjar-', '.js?sv=');
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
|
||||||
|
</html>
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"short_name": "React App",
|
"short_name": "Marten Tracker",
|
||||||
"name": "Create React App Sample",
|
"name": "American Marten Tracker",
|
||||||
"icons": [
|
"icons": [
|
||||||
{
|
{
|
||||||
"src": "favicon.ico",
|
"src": "favicon.ico",
|
||||||
|
@ -12,4 +12,4 @@
|
||||||
"display": "standalone",
|
"display": "standalone",
|
||||||
"theme_color": "#000000",
|
"theme_color": "#000000",
|
||||||
"background_color": "#ffffff"
|
"background_color": "#ffffff"
|
||||||
}
|
}
|
Loading…
Reference in New Issue