-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.html
More file actions
242 lines (224 loc) · 11.3 KB
/
Copy pathsupport.html
File metadata and controls
242 lines (224 loc) · 11.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
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
<!DOCTYPE html>
<html dir="rtl" lang="he">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>תמיכה — האלגוריתם שחזר בתשובה</title>
<style>
*{box-sizing:border-box;margin:0;padding:0}
:root{--bg:#06080D;--purple:#7C3AED;--purple-light:#a78bfa;--purple-xlight:#c4b5fd;
--amber:#ff9a1f;--text:#e9d5ff;--text2:#c4b5fd;--text3:#9ca3af;
--border:rgba(124,58,237,.25);--card:rgba(124,58,237,.08);--green:#059669}
body{background:var(--bg);color:var(--text);font-family:'Segoe UI',Arial,sans-serif;direction:rtl}
nav{position:sticky;top:0;z-index:100;background:rgba(6,8,13,.9);backdrop-filter:blur(12px);
border-bottom:1px solid var(--border);padding:14px 40px;display:flex;align-items:center;justify-content:space-between}
.nav-logo{display:flex;align-items:center;gap:10px;font-size:17px;font-weight:700;color:var(--text);text-decoration:none}
.nav-logo span{font-size:22px}
.nav-cta{background:var(--purple);color:white;border:none;padding:9px 22px;border-radius:8px;font-size:13px;font-weight:600;cursor:pointer;text-decoration:none}
.hero{text-align:center;padding:64px 24px 48px;
background:radial-gradient(ellipse 60% 40% at 50% 0%,rgba(124,58,237,.15),transparent)}
.hero h1{font-size:clamp(32px,5vw,50px);font-weight:800;margin-bottom:12px}
.hero h1 span{color:var(--purple-light)}
.hero p{font-size:16px;color:var(--text2)}
.content{max-width:900px;margin:0 auto;padding:48px 24px 80px}
/* channel cards */
.channels{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:60px}
.channel-card{background:var(--card);border:1.5px solid var(--border);border-radius:18px;
padding:28px 24px;text-align:center;transition:all .2s;cursor:pointer;text-decoration:none;display:block}
.channel-card:hover{border-color:var(--purple-light);transform:translateY(-3px);box-shadow:0 12px 32px rgba(124,58,237,.2)}
.channel-icon{font-size:44px;margin-bottom:12px}
.channel-name{font-size:16px;font-weight:700;color:var(--text);margin-bottom:6px}
.channel-desc{font-size:12px;color:var(--text2);line-height:1.5}
.channel-time{display:inline-block;background:rgba(5,46,22,.6);border:1px solid var(--green);
color:#6ee7b7;font-size:10px;padding:3px 10px;border-radius:10px;margin-top:10px}
/* contact form */
.form-section h2{font-size:28px;font-weight:700;margin-bottom:8px}
.form-section p{font-size:14px;color:var(--text2);margin-bottom:28px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.form-group{display:flex;flex-direction:column;gap:6px}
.form-group label{font-size:12px;font-weight:600;color:var(--purple-xlight)}
.form-group input,.form-group select,.form-group textarea{
padding:12px 14px;background:rgba(124,58,237,.08);border:1.5px solid var(--border);
border-radius:10px;color:var(--text);font-family:inherit;font-size:14px;
direction:rtl;outline:none;transition:border-color .2s;resize:vertical}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--purple-light)}
.form-group input::placeholder,.form-group textarea::placeholder{color:var(--text3)}
.form-group select option{background:#0f0a1e}
.form-full{grid-column:1/-1}
.submit-btn{width:100%;padding:14px;background:linear-gradient(135deg,var(--purple),var(--purple-light));
color:white;border:none;border-radius:12px;font-size:15px;font-weight:700;cursor:pointer;transition:all .2s;margin-top:8px}
.submit-btn:hover{transform:translateY(-1px);box-shadow:0 8px 24px rgba(124,58,237,.4)}
/* success */
#success-msg{display:none;text-align:center;padding:32px;background:rgba(5,46,22,.4);
border:1.5px solid var(--green);border-radius:16px}
#success-msg h3{font-size:22px;margin-bottom:8px;color:#34d399}
#success-msg p{font-size:14px;color:var(--text2)}
/* Beta signup */
.beta-box{background:linear-gradient(135deg,rgba(255,154,31,.08),rgba(124,58,237,.08));
border:1.5px solid rgba(255,154,31,.3);border-radius:20px;padding:32px;text-align:center;margin-top:48px}
.beta-box h3{font-size:22px;font-weight:700;margin-bottom:8px}
.beta-box span{color:var(--amber)}
.beta-box p{font-size:14px;color:var(--text2);margin-bottom:20px}
.beta-row{display:flex;gap:10px;max-width:440px;margin:0 auto}
.beta-row input{flex:1;padding:12px 16px;background:rgba(124,58,237,.1);border:1.5px solid var(--border);
border-radius:10px;color:var(--text);font-family:inherit;font-size:14px;direction:rtl;outline:none}
.beta-row button{background:var(--amber);color:#1a0a3d;border:none;padding:12px 22px;
border-radius:10px;font-size:14px;font-weight:700;cursor:pointer;white-space:nowrap}
/* status */
.status-section{margin-top:48px}
.status-section h2{font-size:22px;font-weight:700;margin-bottom:16px}
.status-row{display:flex;justify-content:space-between;align-items:center;
padding:14px 18px;background:var(--card);border:1px solid var(--border);
border-radius:12px;margin-bottom:8px;font-size:14px}
.status-dot{width:10px;height:10px;border-radius:50%;background:#22c55e;flex-shrink:0}
.status-dot.partial{background:var(--amber)}
.status-label{color:var(--text2);font-size:12px}
footer{border-top:1px solid var(--border);padding:24px 40px;display:flex;
justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
footer p,footer a{font-size:12px;color:var(--text3);text-decoration:none}
footer a:hover{color:var(--purple-light)}
@media(max-width:640px){.channels{grid-template-columns:1fr}.form-grid{grid-template-columns:1fr}.beta-row{flex-direction:column}}
</style>
</head>
<body>
<nav>
<a class="nav-logo" href="landing-page.html"><span>📎</span> האלגוריתם שחזר בתשובה</a>
<a class="nav-cta" href="#">התקן חינם</a>
</nav>
<section class="hero">
<h1>מרכז <span>התמיכה</span></h1>
<p>יש שאלה? בעיה? רעיון? אנחנו כאן בשבילך.</p>
</section>
<div class="content">
<!-- Channels -->
<div class="channels">
<a class="channel-card" href="mailto:susp4514@gmail.com">
<div class="channel-icon">📧</div>
<div class="channel-name">מייל</div>
<div class="channel-desc">לשאלות מפורטות, באגים, ובקשות תכונות</div>
<div class="channel-time">תגובה תוך 24 שעות</div>
</a>
<a class="channel-card" href="https://github.com/DavidPatlas-AI/teshuva-algorithm/issues" target="_blank">
<div class="channel-icon">🐛</div>
<div class="channel-name">GitHub Issues</div>
<div class="channel-desc">דיווח על באגים ובקשות תכונות — עם עדיפות לבאגים</div>
<div class="channel-time">קוד פתוח — כולם יכולים לראות</div>
</a>
<a class="channel-card" href="faq.html">
<div class="channel-icon">📚</div>
<div class="channel-name">שאלות נפוצות</div>
<div class="channel-desc">90% מהשאלות כבר נענו — חפש לפני שתשלח</div>
<div class="channel-time">תגובה מיידית</div>
</a>
</div>
<!-- Contact Form -->
<div class="form-section">
<h2>שלח הודעה</h2>
<p>ממלאים את הטופס ואנחנו חוזרים אליך תוך יום עסקים.</p>
<form id="contact-form" onsubmit="submitForm(event)">
<div class="form-grid">
<div class="form-group">
<label>שם מלא *</label>
<input type="text" required placeholder="ישראל ישראלי">
</div>
<div class="form-group">
<label>כתובת מייל *</label>
<input type="email" required placeholder="you@example.com" dir="ltr">
</div>
<div class="form-group">
<label>נושא *</label>
<select required>
<option value="">בחר נושא</option>
<option>באג / בעיה טכנית</option>
<option>בקשת תכונה חדשה</option>
<option>שאלה כללית</option>
<option>תמיכה בגרסת פרו</option>
<option>הצטרפות לבטא</option>
<option>שיתוף פעולה עסקי</option>
<option>אחר</option>
</select>
</div>
<div class="form-group">
<label>גרסת דפדפן</label>
<input type="text" placeholder="Chrome 125 / Edge 124" dir="ltr">
</div>
<div class="form-group form-full">
<label>תיאור הבעיה / הבקשה *</label>
<textarea rows="5" required placeholder="תאר את הבעיה בפירוט. אם זה באג — כתוב מה עשית, מה קרה, ומה ציפית שיקרה."></textarea>
</div>
</div>
<button type="submit" class="submit-btn">שלח הודעה →</button>
</form>
<div id="success-msg">
<h3>📨 נשלח!</h3>
<p>קיבלנו את הודעתך ונחזור אליך בהקדם. תודה!</p>
</div>
</div>
<!-- Beta signup -->
<div class="beta-box">
<h3>📱 בטא לאפליקציית <span>מובייל</span></h3>
<p>קליפי מגיע ל-Android ו-iOS. רשום את עצמך לקבל גישה ראשונה.</p>
<div class="beta-row">
<input type="email" id="beta-email" placeholder="המייל שלך" dir="ltr">
<button onclick="joinBeta()">אני רוצה גישה ראשונה!</button>
</div>
<p id="beta-msg" style="font-size:12px;color:#6ee7b7;margin-top:10px;display:none">✓ נרשמת! נשלח לך הזמנה עם השקת הבטא.</p>
</div>
<!-- System status -->
<div class="status-section">
<h2>🟢 סטטוס מערכת</h2>
<div class="status-row">
<span>תוסף Chrome</span>
<div style="display:flex;align-items:center;gap:8px">
<div class="status-dot"></div>
<span class="status-label">פועל תקין</span>
</div>
</div>
<div class="status-row">
<span>אתר ודפי מדיניות</span>
<div style="display:flex;align-items:center;gap:8px">
<div class="status-dot"></div>
<span class="status-label">פועל תקין</span>
</div>
</div>
<div class="status-row">
<span>GitHub Pages (Privacy Policy)</span>
<div style="display:flex;align-items:center;gap:8px">
<div class="status-dot"></div>
<span class="status-label">פועל תקין</span>
</div>
</div>
<div class="status-row">
<span>אפליקציית מובייל</span>
<div style="display:flex;align-items:center;gap:8px">
<div class="status-dot partial"></div>
<span class="status-label">בפיתוח — בטא בקרוב</span>
</div>
</div>
</div>
</div>
<footer>
<p>© 2026 האלגוריתם שחזר בתשובה · susp4514@gmail.com</p>
<div style="display:flex;gap:20px">
<a href="docs/privacy-policy.html">פרטיות</a>
<a href="pricing.html">תמחור</a>
<a href="faq.html">שאלות נפוצות</a>
<a href="landing-page.html">בית</a>
</div>
</footer>
<script>
function submitForm(e) {
e.preventDefault();
document.getElementById('contact-form').style.display = 'none';
document.getElementById('success-msg').style.display = 'block';
// In production: send to backend or Formspree
}
function joinBeta() {
const v = document.getElementById('beta-email').value.trim();
if (!v || !v.includes('@')) return;
document.getElementById('beta-msg').style.display = 'block';
document.getElementById('beta-email').value = '';
}
</script>
</body>
</html>