-
Notifications
You must be signed in to change notification settings - Fork 4
/
prod.html
39 lines (39 loc) · 949 Bytes
/
prod.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
38
39
<title>botexpo</title>
<html>
<head>
<script
crossOrigin
src="https://unpkg.com/tock-react-kit@latest/build/tock-react-kit-standalone.umd.js"
></script>
<style>
body {
background-image: url("./mate_bg.png");
background-size: 50%;
background-repeat: no-repeat;
background-position: left;
background-color: black;
}
</style>
</head>
<body>
<div id="chat"></div>
<script>
TockReact.renderChat(document.getElementById('chat'), 'https://bot-botexpo.prod.aws.vsct.fr/io/botexpo/botexpo/web', 'referralParameter', {
palette: {
text: {
user: 'black',
bot: 'black',
card: 'black',
input: 'black',
},
background: {
user: 'white',
bot: 'orange',
card: 'orange',
input: 'white',
},
},
});
</script>
</body>
</html>