-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 1.2 KB
/
Copy pathindex.html
File metadata and controls
39 lines (35 loc) · 1.2 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Logos AI</title>
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/alpheios-components@latest/dist/style/style-components.min.css" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
<!-- <script type="text/javascript">
document.addEventListener("DOMContentLoaded", function (event) {
import("https://cdn.jsdelivr.net/npm/alpheios-embedded@latest/dist/alpheios-embedded.min.js").then(embedLib => {
window.AlpheiosEmbed.importDependencies({
mode: 'cdn'
}).then(Embedded => {
new Embedded({
clientId: 'asdf',
textLangCode: 'grc',
mobileTriggerEvent: "longtap",
popupInitialPos: {top: '0vh', left: '0vw'}
}).activate();
}).catch(e => {
console.error(`Import of Alpheios embedded library dependencies failed: ${e}`)
})
}).catch(e => {
console.error(`Import of Alpheios Embedded library failed: ${e}`)
})
});
</script> -->
</html>