-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (37 loc) · 1.5 KB
/
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
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" href="/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="manifest" href="/manifest.webmanifest">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta
name="description"
content="This app is an implementation of ELIZA Websockets chatbot made with Vue.js."
>
<meta property="og:title" content="Eliza Chatbot">
<meta
property="og:description"
content="This app is an implementation of ELIZA Websockets chatbot made with Vue.js."
>
<meta property="og:image" content="https://super16.github.io/eliza-chatbot/card.png">
<meta property="og:url" content="https://super16.github.io/eliza-chatbot/">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Eliza Chatbot">
<meta name="twitter:creator" content="@doXcrimes">
<meta
name="twitter:description"
content="This app is an implementation of ELIZA Websockets chatbot made with Vue.js."
>
<meta name="twitter:image" content="https://super16.github.io/eliza-chatbot/twitter-card.png">
<meta name="twitter:image:alt" content="Eliza Chatbot">
<script type="module" src="/src/main.ts"></script>
<title>Eliza Chatbot</title>
</head>
<body>
<div id="app"></div>
</body>
</html>