-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (42 loc) · 1.73 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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<!-- open graph -->
<meta property="og:title" content="세모 - 세종대의 모든 것" />
<meta
property="og:description"
content="세종대학교의 모든 것을 한번에 모아보세요!"
/>
<meta property="og:image" content="/images/semo-og.png" />
<meta property="og:url" content="https://semo-web.vercel.app" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="세모" />
<meta property="og:locale" content="ko_KR" />
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/favicon.ico" />
<!-- Preconnect and DNS Prefetch for Faster Font Loading -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preconnect" href="https://cdn.jsdelivr.net" />
<link rel="dns-prefetch" href="https://fonts.googleapis.com" />
<link rel="dns-prefetch" href="https://fonts.gstatic.com" />
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net" />
<!-- Google Fonts: Roboto, Noto Sans KR with Display Swap -->
<link
href="https://fonts.googleapis.com/css2?family=Roboto&family=Noto+Sans+KR&display=swap"
rel="stylesheet"
/>
<!-- Pretendard via JSDelivr CDN -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>세모 - 세종대의 모든 것</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>