tg-bot-miniapp/index.html

24 lines
620 B
HTML
Raw Permalink Normal View History

2024-07-16 09:58:31 +08:00
<!--
* @LastEditors: John
* @Date: 2024-07-13 10:21:58
2024-07-16 17:53:55 +08:00
* @LastEditTime: 2024-07-16 17:51:58
2024-07-16 09:58:31 +08:00
* @Author: John
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
2024-07-16 17:53:55 +08:00
<link rel="icon" type="image/svg+xml" href="/pioneer.svg" />
2024-07-16 09:58:31 +08:00
<meta
name="viewport"
content="width=device-width, initial-scale=1.0,maximum-scale=1, minimum-scale=1, user-scalable=no"
/>
2024-07-16 17:53:55 +08:00
<title>Pioneerer bot</title>
2024-07-16 09:58:31 +08:00
</head>
<body>
<div id="root"></div>
<script src="https://telegram.org/js/telegram-web-app.js"></script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>