-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 989 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./index.css" />
<title>Logseq Text Generator</title>
<!-- Обновлено заглавие для отражения новой функции -->
</head>
<body>
<div id="app">
<h1 style="color: white">Text Generator Plugin</h1>
<!-- Заголовок для плагина -->
<p style="color: white">
Use the command <strong>📝 Text Generator</strong> to generate
text using OpenAI.
</p>
<!-- Инструкция -->
</div>
<script src="./index.ts" type="module"></script>
</body>
</html>