-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
325 lines (284 loc) · 9.98 KB
/
index.html
File metadata and controls
325 lines (284 loc) · 9.98 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pulse-cam - Secure Institutional Knowledge Sharing Platform</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: #11181C;
background: #000;
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.hero {
text-align: center;
padding: 100px 0;
color: white;
background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 50% 50%, rgba(240, 30, 33, 0.1) 0%, transparent 70%);
}
.hero-content {
position: relative;
z-index: 1;
}
.hero h1 {
font-size: 4rem;
margin-bottom: 20px;
font-weight: 800;
background: linear-gradient(45deg, #F01E21, #ff4757);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero p {
font-size: 1.4rem;
margin-bottom: 40px;
opacity: 0.9;
color: #ECEDEE;
}
.cta-button {
display: inline-block;
background: #F01E21;
color: white;
padding: 18px 36px;
text-decoration: none;
border-radius: 12px;
font-weight: 700;
font-size: 1.2rem;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(240, 30, 33, 0.3);
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 8px 30px rgba(240, 30, 33, 0.4);
background: #e01a1d;
}
.features {
background: #11181C;
padding: 100px 0;
}
.features h2 {
text-align: center;
font-size: 3rem;
margin-bottom: 60px;
color: #ECEDEE;
font-weight: 700;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
margin-top: 40px;
}
.feature {
text-align: center;
padding: 40px 30px;
border-radius: 20px;
background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
transition: all 0.3s ease;
border: 1px solid #333;
position: relative;
overflow: hidden;
}
.feature::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #F01E21, #ff4757);
}
.feature:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
border-color: #F01E21;
}
.feature-icon {
font-size: 3.5rem;
margin-bottom: 25px;
filter: drop-shadow(0 0 10px rgba(240, 30, 33, 0.3));
}
.feature h3 {
font-size: 1.6rem;
margin-bottom: 15px;
color: #ECEDEE;
font-weight: 600;
}
.feature p {
color: #9BA1A6;
line-height: 1.7;
font-size: 1rem;
}
.download {
background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
color: white;
text-align: center;
padding: 100px 0;
position: relative;
}
.download::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 70%, rgba(240, 30, 33, 0.1) 0%, transparent 50%);
}
.download-content {
position: relative;
z-index: 1;
}
.download h2 {
font-size: 3rem;
margin-bottom: 20px;
font-weight: 700;
color: #ECEDEE;
}
.download p {
font-size: 1.3rem;
margin-bottom: 50px;
opacity: 0.9;
color: #9BA1A6;
}
.app-store-badge {
display: inline-block;
margin: 10px;
transition: all 0.3s ease;
filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}
.app-store-badge:hover {
transform: scale(1.05) translateY(-2px);
filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
}
.footer {
background: #000;
color: white;
text-align: center;
padding: 60px 0;
border-top: 1px solid #333;
}
.footer a {
color: #F01E21;
text-decoration: none;
margin: 0 20px;
font-weight: 500;
transition: color 0.3s ease;
}
.footer a:hover {
color: #ff4757;
text-decoration: underline;
}
.footer p {
margin-bottom: 20px;
color: #9BA1A6;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.1rem;
}
.features h2 {
font-size: 2rem;
}
.feature-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="hero">
<div class="container">
<div class="hero-content">
<h1>Pulse-cam</h1>
<p>Secure Institutional Knowledge Sharing Through Video</p>
<a href="#download" class="cta-button">Download for Your Organization</a>
</div>
</div>
</div>
<div class="features">
<div class="container">
<h2>Why Choose Pulse-cam for Institutional Knowledge Sharing?</h2>
<div class="feature-grid">
<div class="feature">
<div class="feature-icon">🎥</div>
<h3>Training Documentation</h3>
<p>Create comprehensive training materials with segmented recording. Perfect for step-by-step procedures and institutional knowledge transfer.</p>
</div>
<div class="feature">
<div class="feature-icon">🔄</div>
<h3>Content Organization</h3>
<p>Intuitive drag & drop reordering with visual indicators. Organize your institutional content exactly how you need it for maximum clarity.</p>
</div>
<div class="feature">
<div class="feature-icon">⚙️</div>
<h3>Professional Quality</h3>
<p>Camera controls, zoom, and stabilization for institutional-grade video content. Ensure your knowledge sharing materials meet professional standards.</p>
</div>
<div class="feature">
<div class="feature-icon">⏱️</div>
<h3>Flexible Duration Control</h3>
<p>Set recording limits from 15 seconds to 3 minutes. Perfect for different types of institutional content and training scenarios.</p>
</div>
<div class="feature">
<div class="feature-icon">💾</div>
<h3>Secure Local Storage</h3>
<p>Auto-save your institutional content locally. All data remains secure on your device until you choose to share it through secure channels.</p>
</div>
<div class="feature">
<div class="feature-icon">📱</div>
<h3>Cross-Platform Access</h3>
<p>Works seamlessly on iOS and Android. Import existing content and create new materials across all your organization's devices.</p>
</div>
</div>
</div>
</div>
<div class="download" id="download">
<div class="container">
<div class="download-content">
<h2>Start Your Institutional Knowledge Sharing Journey</h2>
<p>Download Pulse-cam for your organization today</p>
<div class="app-store-badge">
<a href="https://apps.apple.com/app/pulse-video-recorder/id6748621024" target="_blank">
<img src="https://developer.apple.com/assets/elements/badges/download-on-the-app-store.svg" alt="Download on the App Store" width="200">
</a>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="container">
<p>© 2025 Pulse-cam - Institutional Knowledge Sharing Platform. All rights reserved.</p>
<a href="support.html">Support</a>
<a href="privacy.html">Privacy Policy</a>
<a href="mailto:support@mieweb.com">Contact Us</a>
</div>
</div>
</body>
</html>