-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (96 loc) · 2.51 KB
/
index.html
File metadata and controls
96 lines (96 loc) · 2.51 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script charset="UTF-8" id="LA_COLLECT" src="//sdk.51.la/js-sdk-pro.min.js"></script>
<script>
// 检查 LA 是否成功加载
if (typeof LA !== 'undefined') {
LA.init({
id: 'KrQlCuikzDhFplYj',
ck: 'KrQlCuikzDhFplYj',
autoTrack: true,
screenRecord: true,
})
} else {
console.warn('LA analytics not available')
}
</script>
<title>PitchBetter AI</title>
<style>
body,
html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background-color: #161a20; /* Same as var(--background) */
}
.app-preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: #161a20;
z-index: 9999;
opacity: 1;
transition: opacity 0.3s ease-in-out;
}
.app-preloader.fade-out {
opacity: 0;
}
.loader-container {
text-align: center;
width: 80%;
max-width: 300px;
}
.progress-bar {
width: 100%;
height: 8px;
background-color: #2c323a; /* Same as var(--surface) */
border-radius: 4px;
overflow: hidden;
margin-bottom: 1rem;
}
.progress {
width: 100%;
height: 100%;
background: linear-gradient(90deg, #5e97f6, #8b5cf6); /* Same as var(--primary) & light */
background-size: 200% 100%;
animation: progress-animation 1.5s linear infinite;
}
.loading-text {
color: #8d96a0; /* Same as var(--text-secondary) */
font-weight: 500;
font-family: sans-serif;
}
@keyframes progress-animation {
0% {
background-position: 200% 0;
}
100% {
background-position: -200% 0;
}
}
</style>
</head>
<body>
<div id="app">
<div id="app-preloader" class="app-preloader">
<div class="loader-container">
<div class="progress-bar">
<div class="progress"></div>
</div>
<p class="loading-text">Loading PitchBetter AI...</p>
</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>