-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (37 loc) · 1.7 KB
/
index.html
File metadata and controls
48 lines (37 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- 🔹 브라우저/모바일 상단 바 색상 -->
<meta name="theme-color" content="#FFFCF8" />
<!-- 🔹 PWA manifest -->
<link rel="manifest" href="/manifest.webmanifest" />
<!-- 🔹 iOS: 웹앱 전체 화면 모드 허용 -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<!-- 🔹 iOS: 홈 화면 아이콘 -->
<!-- /public//logo/logo.svg 기준 -->
<link rel="apple-touch-icon" href="/logo/logo-192.png" />
<title>우리.zip</title>
<!-- 🔹 초대 링크용 OG 메타 태그 (임시 카드 디자인) -->
<meta property="og:type" content="website" />
<meta property="og:title" content="우리.zip - 가족 초대가 도착했어요" />
<meta
property="og:description"
content="링크를 눌러 우리.zip 가족 공간에 함께 들어와 주세요."
/>
<!-- 임시 카드 이미지 (public/images 폴더 기준) -->
<meta property="og:image" content="/images/invite-card-temp.png" />
<!-- 나중에 실제 배포 도메인이 생기면 여기만 고치면 됨 -->
<meta property="og:url" content="https://woori-zip-app.vercel.app/splash" />
</head>
<body>
<div id="root"></div>
<!-- Kakao JavaScript SDK (먼저 로드) -->
<!-- <script src="https://developers.kakao.com/sdk/js/kakao.min.js"></script> -->
<!-- 우리 앱 엔트리 -->
<script type="module" src="/src/main.jsx"></script>
</body>
</html>