Skip to content

Commit cdb54c7

Browse files
committed
Add Meta Tags
1 parent 23681f1 commit cdb54c7

File tree

10 files changed

+31
-3
lines changed

10 files changed

+31
-3
lines changed

public/favicon.ico

0 Bytes
Binary file not shown.

public/index.html

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,22 @@
33

44
<head>
55
<meta charset="UTF-8" />
6+
<title>JavaScript ChatBot</title>
7+
<meta name="title" content="JavaScript ChatBot">
68
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
79
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>JavaScript ChatBot</title>
10+
<meta name="description" content="Simple and Powerful Chatbot In JavaScript.">
11+
912

1013
<link rel="preconnect" href="https://fonts.googleapis.com" />
1114
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
1215

16+
<link rel="apple-touch-icon" sizes="180x180" href="./src/images/apple-touch-icon.png">
17+
<link rel="icon" type="image/png" sizes="32x32" href="./src/images/favicon-32x32.png">
18+
<link rel="icon" type="image/png" sizes="16x16" href="./src/images/favicon-16x16.png">
19+
20+
<link rel="manifest" href="./site.webmanifest">
21+
1322
<link rel="stylesheet" href="./src/styles/normalize.min.css" />
1423
<link rel="stylesheet" href="./src/styles/compiled.min.css" />
1524
</head>

public/site.webmanifest

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "JavaScript Chatbot",
3+
"short_name": "",
4+
"icons": [
5+
{
6+
"src": "/android-chrome-192x192.png",
7+
"sizes": "192x192",
8+
"type": "image/png"
9+
},
10+
{
11+
"src": "/android-chrome-512x512.png",
12+
"sizes": "512x512",
13+
"type": "image/png"
14+
}
15+
],
16+
"theme_color": "#242424",
17+
"background_color": "#242424",
18+
"display": "standalone"
19+
}
19.5 KB
Loading
89.4 KB
Loading
17.9 KB
Loading
599 Bytes
Loading
1.36 KB
Loading

public/src/styles/compiled.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/src/styles/styles.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ header {
7373

7474
.suggest-chat {
7575
width: 2em;
76-
animation: chat-btn 2 15s;
76+
animation: chat-btn 5 15s;
7777
}
7878

7979
main {

0 commit comments

Comments
 (0)