-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.49 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>window.ai - AI Generate local on your browser</title>
<meta name="description" content="Generate text by Gemini Nano, this is not from the server but from your own browser and can run offline without the problem of lost connections." />
<link href="./assets/globals.css" rel="stylesheet" />
<link href="./assets/styles.css" rel="stylesheet" />
<script type="importmap">
{
"imports": {
"@material/web/": "https://esm.run/@material/web/",
"react-gist": "https://esm.run/react-gist"
}
}
</script>
<script type="module">
import '@material/web/all.js'
import "react-gist"
import {styles as typescaleStyles} from '@material/web/typography/md-typescale-styles.js'
document.adoptedStyleSheets.push(typescaleStyles.styleSheet);
</script>
</head>
<body>
<div class="alert-container">
<div class="alert-manage"></div>
</div>
<div id="app-page"></div>
<script src="https://unpkg.com/react@18/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script src="https://unpkg.com/gist-embed/dist/gist-embed.min.js"></script>
<script type="text/jsx" src="./assets/Render.js"></script>
</body>
</html>