Files
Line_Project_Bot/index.html
T

30 lines
972 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1,minimum-scale=1,user-scalable=no,viewport-fit=cover">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@500;600;700&family=IBM+Plex+Mono:wght@400;500;600&family=Noto+Sans+TC:wght@400;500;700&display=swap"
rel="stylesheet">
<script>
history.pushState(null, null, location.href);
window.onpopstate = function () {
history.go(1);
};
</script>
<title>Line Project Bot</title>
</head>
<body oncontextmenu="return false">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root" style="height: 100vh;"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>