-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (60 loc) · 1.83 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TechDoc</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
background-color: #f0f0f0;
}
.title-container {
text-align: center;
margin-bottom: 20px;
}
h1 {
color: #333;
margin-bottom: 10px;
}
h2 {
color: #666;
font-weight: normal;
margin-top: 0;
}
</style>
</head>
<body>
<div class="title-container">
<h1>TechDoc</h1>
<h2>The general use AI by Dr. Om J Lakhani</h2>
</div>
<div>
<script type="text/javascript">
window.MindStudioSettings = {
publicToken: "pk0fd591685ba7a40ce61d33e0c0099d8e",
appId: "30a0649a-fe8d-42e2-aa9a-32f615df7533",
userId: "YOUR_USER_ID",
targetId: "mindstudio-frame",
debugging: true,
options: {
autoFocus: false,
disableThreads: false,
minimizeThreadPanel: false,
launchVariables: {
myVariable: "My Value"
}
}
};
</script>
<script src="https://api.mindstudio.ai/v1/embed.js"></script>
<iframe id="mindstudio-frame" referrerpolicy="origin" style="width:900px;height:600px;border:1px solid rgba(0,0,0,0.1);border-radius:8px;outline:none;" title="AI Embed" frameborder="0"></iframe>
</div>
</body>
</html>