forked from 2024-SummerBootcamp-Team/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 834 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
href="https://i.ibb.co/Xtf8k11/Brain-Washer-logo-200.png"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Brain Wahser</title>
<script src="https://t1.kakaocdn.net/kakao_js_sdk/kakao.min.js"
integrity="sha384-TiCUE00h649CAMonG018J2ujOgDKW/kVWlChEuu4jK2vxfAAD0eZxzCKakxg55G4" crossorigin="anonymous"></script>
<script>
Kakao.init('841c9b0bf5c0fecf036deba6fcf8dfb9');
Kakao.isInitialized();
</script>
<script type="text/javascript" src="https://developers.kakao.com/sdk/js/kakao.js"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script src="share.js" charset="utf-8"></script>
</body>
</html>