-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
153 lines (149 loc) · 4.3 KB
/
index.html
File metadata and controls
153 lines (149 loc) · 4.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ReactMe Support</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #0a0a0a;
color: #f0f0f0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
}
.card {
max-width: 560px;
width: 100%;
background: #161616;
border-radius: 20px;
padding: 48px 40px;
border: 1px solid #2a2a2a;
}
.header {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 40px;
}
.app-icon {
width: 80px;
height: 80px;
border-radius: 18px;
flex-shrink: 0;
}
.header-text {
display: flex;
flex-direction: column;
}
.logo {
font-size: 36px;
font-weight: 800;
letter-spacing: -1px;
margin-bottom: 4px;
}
.tagline {
font-size: 14px;
color: #888;
}
h2 {
font-size: 18px;
font-weight: 700;
margin-bottom: 12px;
color: #fff;
}
p {
font-size: 15px;
line-height: 1.6;
color: #aaa;
margin-bottom: 32px;
}
.faq-item {
border-top: 1px solid #222;
padding: 20px 0;
}
.faq-item:last-child {
border-bottom: 1px solid #222;
margin-bottom: 40px;
}
.faq-q {
font-size: 15px;
font-weight: 600;
color: #fff;
margin-bottom: 6px;
}
.faq-a {
font-size: 14px;
color: #888;
line-height: 1.6;
margin: 0;
}
.contact-btn {
display: inline-block;
background: #fff;
color: #000;
font-weight: 700;
font-size: 15px;
padding: 14px 28px;
border-radius: 12px;
text-decoration: none;
}
.contact-btn:hover { background: #e5e5e5; }
.footer-links {
margin-top: 32px;
padding-top: 24px;
border-top: 1px solid #222;
text-align: center;
}
.footer-links a {
font-size: 13px;
color: #555;
text-decoration: none;
}
.footer-links a:hover { color: #aaa; }
</style>
</head>
<body>
<div class="card">
<div class="header">
<img src="icon.png" alt="ReactMe" class="app-icon" />
<div class="header-text">
<div class="logo">ReactMe</div>
<div class="tagline">Dual-camera recording</div>
</div>
</div>
<h2>Support</h2>
<p>Having trouble with ReactMe? Check the FAQ below or reach out directly — we respond within 24 hours.</p>
<div class="faq-item">
<div class="faq-q">The app says dual-camera is not supported on my device.</div>
<div class="faq-a">Simultaneous front and rear camera recording requires iPhone XS (2018) or later. Older devices are not supported.</div>
</div>
<div class="faq-item">
<div class="faq-q">Where are my recordings saved?</div>
<div class="faq-a">Sessions are saved privately on your device in the app's library. They are not uploaded anywhere and do not appear in your Photos app until you choose to export.</div>
</div>
<div class="faq-item">
<div class="faq-q">How do I restore my Pro purchase?</div>
<div class="faq-a">Open ReactMe → Settings (gear icon) → Restore Purchases. Your purchase is tied to your Apple ID and can be restored on any device signed in to that account.</div>
</div>
<div class="faq-item">
<div class="faq-q">The recording stopped automatically.</div>
<div class="faq-a">Free users have a 30-second recording limit. Upgrade to ReactMe Pro for up to 90 seconds per session.</div>
</div>
<div class="faq-item">
<div class="faq-q">How do I delete a session?</div>
<div class="faq-a">In the Library, press and hold a session card (or swipe left) to reveal the Delete option. This permanently removes both video clips from your device.</div>
</div>
<h2>Contact</h2>
<p>For anything not covered above, email us directly.</p>
<a class="contact-btn" href="mailto:reactmesupport@gmail.com">Email Support</a>
<div class="footer-links">
<a href="privacy_policy.html">Privacy Policy</a>
</div>
</div>
</body>
</html>