-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (50 loc) · 2.55 KB
/
Copy pathindex.html
File metadata and controls
57 lines (50 loc) · 2.55 KB
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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<!-- 파비콘 설정 -->
<link rel="icon" type="image/png" href="%VITE_LOGO_URL%" />
<link rel="apple-touch-icon" href="%VITE_LOGO_URL%" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- 기본 메타 태그 -->
<title>우리.zip - 하우스메이트 생활관리 플랫폼</title>
<meta name="description" content="하우스메이트와 함께하는 스마트한 생활관리 플랫폼. 집안일 분담, 가계부 관리, 소통을 한 번에!" />
<meta name="keywords" content="하우스메이트, 룸메이트, 생활관리, 집안일, 가계부, 공동생활" />
<meta name="author" content="LastDance Team" />
<!-- Open Graph 태그 (Facebook, KakaoTalk 등) -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="우리.zip" />
<meta property="og:title" content="우리.zip - 하우스메이트 생활관리 플랫폼" />
<meta property="og:description" content="하우스메이트와 함께하는 스마트한 생활관리 플랫폼. 집안일 분담, 가계부 관리, 소통을 한 번에!" />
<meta property="og:image" content="%VITE_LOGO_URL%" />
<meta property="og:url" content="https://woori-zip.onrender.com" />
<meta property="og:locale" content="ko_KR" />
<!-- Twitter Card 태그 -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="우리.zip - 하우스메이트 생활관리 플랫폼" />
<meta name="twitter:description" content="하우스메이트와 함께하는 스마트한 생활관리 플랫폼. 집안일 분담, 가계부 관리, 소통을 한 번에!" />
<meta name="twitter:image" content="%VITE_LOGO_URL%" />
<!-- 추가 SEO 메타 태그 -->
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#3B82F6" />
<link rel="canonical" href="https://woori-zip.onrender.com" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<!-- Service Worker 등록 -->
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/sw.js')
.then((registration) => {
console.log('SW registered: ', registration);
})
.catch((registrationError) => {
console.log('SW registration failed: ', registrationError);
});
});
}
</script>
</body>
</html>