-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsupport.html
More file actions
185 lines (161 loc) · 4.94 KB
/
support.html
File metadata and controls
185 lines (161 loc) · 4.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support - Pulse-cam</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: #FFFFFF;
background: #000;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 40px 20px;
}
.header {
text-align: center;
margin-bottom: 40px;
}
.header h1 {
font-size: 2.5rem;
margin-bottom: 10px;
font-weight: 700;
background: linear-gradient(45deg, #F01E21, #ff4757);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.header p {
font-size: 1.1rem;
color: #B8BFC4;
}
.content {
background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
padding: 40px;
border-radius: 20px;
border: 1px solid #333;
position: relative;
overflow: hidden;
}
.content::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #F01E21, #ff4757);
}
.content h2 {
color: #FFFFFF;
margin-bottom: 20px;
font-size: 1.5rem;
font-weight: 600;
}
.content p {
color: #B8BFC4;
margin-bottom: 20px;
font-size: 1rem;
}
.content p {
margin-bottom: 15px;
color: #B8BFC4;
}
.content ul {
margin: 15px 0 15px 20px;
color: #B8BFC4;
}
.content li {
margin-bottom: 8px;
}
.support-option {
background: #1a1a1a;
padding: 20px;
border-radius: 10px;
margin-bottom: 15px;
border: 1px solid #333;
transition: all 0.3s ease;
}
.support-option:hover {
border-color: #F01E21;
transform: translateY(-2px);
}
.support-option h3 {
color: #FFFFFF;
margin-bottom: 10px;
font-size: 1.2rem;
font-weight: 600;
}
.support-option p {
color: #B8BFC4;
margin-bottom: 10px;
}
.support-link {
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);
margin-top: 10px;
}
.support-link:visited {
color: white;
}
.support-link:hover {
transform: translateY(-3px);
box-shadow: 0 8px 30px rgba(240, 30, 33, 0.4);
background: #e01a1d;
text-decoration: none;
color: white;
}
@media (max-width: 768px) {
.header h1 {
font-size: 2rem;
}
.content {
padding: 25px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Support</h1>
<p>Get help with Pulse-cam</p>
</div>
<div class="content">
<h2>Contact Support</h2>
<p>For support inquiries, please reach out to us through one of the following methods:</p>
<div class="support-option">
<h3>Email Support</h3>
<p>Send us an email and we'll get back to you as soon as possible.</p>
<a href="mailto:support@mieweb.com" class="support-link">support@mieweb.com</a>
</div>
<div class="support-option">
<h3>Report an Issue</h3>
<p>Found a bug or have a feature request? Open an issue on our GitHub repository.</p>
<a href="https://github.com/mieweb/pulse/issues" target="_blank" rel="noopener noreferrer" class="support-link">Open a GitHub Issue →</a>
</div>
</div>
</div>
</body>
</html>