Add robot file, description and fix bundle link

This commit is contained in:
Corentin Risselin 2020-07-20 18:00:47 +09:00
commit 757be042a1
3 changed files with 9 additions and 3 deletions

View file

@ -1,9 +1,10 @@
<!DOCTYPE html>
<html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<title>AYO Inc.</title>
<title>AYO Inc. - AI solution for business</title>
<meta name="description" content="AYO provides customized AI solution for comapnies to improve their process. We take inspiration in the latest research in machine learning : deep learning, probabilistic models, neuroscience and physics."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="/assets/favicon.svg" type="image/svg+xml">
<link rel="shortcut icon" href="/assets/favicon.png">
@ -11,7 +12,7 @@
<body>
<div id="root"></div>
<script src="/bundle.js.gz"></script>
<script src="/bundle.js"></script>
</body>
</html>

4
robot.txt Normal file
View file

@ -0,0 +1,4 @@
User-agent: *
Allow: /
Disallow: /assets/
Disallow: /lang/

View file

@ -21,6 +21,7 @@ module.exports = Object.assign(
}),
new CopyPlugin([
{from: 'index.html'},
{from: 'robot.txt'},
{from: 'src/lang', to: 'lang'},
{from: 'assets/public', to: 'assets'}
]),