forked from TEAM-BEAT/BEAT-Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.02 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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/BEAT.svg" />
<link rel="mask-icon" href="/BEAT.svg" color="#FF006B" />
<link rel="apple-touch-icon" href="/BEAT.svg" />
<link rel="stylesheet" href="./src/styles/fonts/fonts.css" />
<link rel="manifest" href="/manifest.json" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="공연, 밴드, 뮤지컬, 비트, beat" />
<meta property="og:title" content="BEAT" />
<meta property="og:description" content="BE AT WHERE YOUR HEART BEATS" />
<meta property="og:image" content="https://www.beatlive.kr/og_img.png" />
<title>BEAT</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
(function () {
if ("serviceWorker" in navigator) {
navigator.serviceWorker.register("/service-worker.js");
}
})();
</script>
</body>
</html>