summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--index.html15
-rw-r--r--index.js3
2 files changed, 18 insertions, 0 deletions
diff --git a/index.html b/index.html
index a90271c..7c742d2 100644
--- a/index.html
+++ b/index.html
@@ -1,9 +1,24 @@
<html>
<head>
<meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="robots" content="all">
+ <meta name="keywords" content="qr, code, generator, qr code">
+ <meta name="description" content="Interactive QR code generator">
+ <meta name="author" content="Yuval Adam">
+ <link rel="canonical" href="http://qrgen.xyz">
</head>
<body>
<div id="root"></div>
<script type="text/javascript" src="bundle.js" charset="utf-8"></script>
+ <script>
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+ })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
+
+ ga('create', 'UA-82486356-1', 'auto');
+ ga('send', 'pageview');
+ </script>
</body>
</html>
diff --git a/index.js b/index.js
index ac2d47f..38fac1b 100644
--- a/index.js
+++ b/index.js
@@ -37,6 +37,9 @@ class Qrgen extends React.Component {
<input type='text' value={this.state.size} onChange={(e) => {
this.setState(Object.assign({}, this.state, { size: e.target.value }))
}}></input>
+ <footer>
+ <p>Created by <a href="https://yuv.al">Yuval Adam</a>. Source available on <a href="https://github.com/yuvadm/qrgen.xyz">Github</a>.</p>
+ </footer>
</div>
}
}