-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (65 loc) · 1.82 KB
/
index.html
File metadata and controls
76 lines (65 loc) · 1.82 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
<!-- PWA Meta Tags -->
<meta name="theme-color" content="#0f172a" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="TaskFlow" />
<meta name="mobile-web-app-capable" content="yes" />
<title>TaskFlow - Smart Task Planner</title>
<meta name="description" content="Smart Daily Task Planner with Reminders and Notifications" />
<!-- Icons -->
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="mask-icon" href="/icon.svg" color="#8B5CF6">
<style>
#splash-screen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #0f172a;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
transition: opacity 0.5s ease-out, visibility 0.5s;
}
#splash-screen.hidden {
opacity: 0;
visibility: hidden;
}
.splash-icon {
width: 96px;
height: 96px;
animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
0% {
transform: scale(1);
opacity: 0.8;
}
50% {
transform: scale(1.1);
opacity: 1;
}
100% {
transform: scale(1);
opacity: 0.8;
}
}
</style>
</head>
<body>
<div id="splash-screen">
<img src="/icon.svg" class="splash-icon" alt="TaskFlow" />
</div>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>