-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (33 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="description" content="一群由台灣學生組成的團隊,共同為了未來與夢想而打拼,為台灣的資訊安全而奮鬥。">
<meta name="keywords" content="夏特稀,夏特稀個人網站,資安,特殊選才,團隊,電腦,愛神閃靈,靈萌團隊,靈萌,Cutespirit,Cutespirt Team,TershiXia">
<meta name="author" content="夏特稀">
<meta name="copyright" content="靈萌團隊">
<meta http-equiv="Content-Language" content="zh-TW">
<!-- Facebook Meta property -->
<meta property="og:title" content="靈萌團隊官網" />
<meta property="og:description" content="一群由台灣學生組成的團隊,共同為了未來與夢想而打拼,為台灣的資訊安全而奮鬥。" />
<meta property="og:image" content="/favicon.png" />
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
<title>靈萌團隊官網</title>
</head>
<body class="overflow-x-hidden m-0 p-0 text-black dark:text-white bg-gray-50 dark:bg-gray-700 transition-colors duration-200">
<!-- Github Page 到 / 以外就會回傳 404,將 sessionStorage.redirect 取出來 -->
<script>
(function(){
let redirect = sessionStorage.redirect;
delete sessionStorage.redirect;
if (redirect && redirect !== location.href) {
history.replaceState(null, null, redirect);
}
})();
</script>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>