forked from 1e5i-Shark/algobaro-fe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (64 loc) · 1.68 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
href="/assets/favicon.ico"
/>
<link
rel="stylesheet"
as="style"
crossorigin
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/variable/pretendardvariable-dynamic-subset.min.css"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>AlgoBaro | 바로바로 함께 푸는 알고리즘</title>
<meta
property="og:url"
content="https://algobaro.vercel.app"
/>
<meta
property="og:title"
content="Algobaro | 바로바로 함께 푸는 알고리즘"
/>
<meta
property="og:image"
content="/assets/thumbnail.png"
/>
<meta
property="og:description"
content="모두 다 함께 푸는 알고리즘 테스트! 실제 시험 환경에서 동료들과 코딩 테스트를 실시간으로 연습하고 풀이를 공유해 보세요"
/>
<meta
property="og:site_name"
content="Algobaro"
/>
<meta
name="twitter:card"
content="summary"
/>
<meta
name="twitter:title"
content="Algobaro | 바로바로 함께 푸는 알고리즘"
/>
<meta
name="twitter:description"
content="모두 다 함께 푸는 알고리즘 테스트! 실제 시험 환경에서 동료들과 코딩 테스트를 실시간으로 연습하고 풀이를 공유해 보세요"
/>
<meta
name="twitter:image"
content="/assets/thumbnail.png"
/>
</head>
<body>
<div id="root"></div>
<script
type="module"
src="/src/main.tsx"
></script>
</body>
</html>