-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINDEX.html
More file actions
235 lines (205 loc) · 9.17 KB
/
Copy pathINDEX.html
File metadata and controls
235 lines (205 loc) · 9.17 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
<!DOCTYPE html>
<html lang="he" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>שאזם נשימות - אינדקס מהיר</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #0c1445 0%, #1a2980 50%, #26d0ce 100%);
min-height: 100vh;
color: white;
padding: 2rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.header {
text-align: center;
margin-bottom: 3rem;
}
.title {
font-size: 3rem;
margin-bottom: 1rem;
background: linear-gradient(45deg, #64b5f6, #26d0ce);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.subtitle {
font-size: 1.2rem;
opacity: 0.8;
}
.links-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
.link-card {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
border-radius: 15px;
padding: 1.5rem;
border: 1px solid rgba(255,255,255,0.2);
transition: all 0.3s ease;
text-decoration: none;
color: white;
display: block;
}
.link-card:hover {
transform: translateY(-5px);
background: rgba(255,255,255,0.15);
border-color: rgba(100, 181, 246, 0.5);
}
.link-icon {
font-size: 2rem;
margin-bottom: 0.5rem;
display: block;
}
.link-title {
font-size: 1.2rem;
font-weight: bold;
margin-bottom: 0.5rem;
color: #64b5f6;
}
.link-desc {
font-size: 0.9rem;
opacity: 0.8;
line-height: 1.4;
}
.version-badge {
background: linear-gradient(45deg, #667eea, #764ba2);
color: white;
padding: 0.2rem 0.5rem;
border-radius: 10px;
font-size: 0.7rem;
font-weight: bold;
display: inline-block;
margin-top: 0.5rem;
}
.footer {
text-align: center;
margin-top: 3rem;
padding: 2rem;
background: rgba(255,255,255,0.05);
border-radius: 15px;
border: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
.title {
font-size: 2rem;
}
.links-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1 class="title">🫁 שאזם נשימות</h1>
<p class="subtitle">אינדקס מהיר - הגרסאות האחרונות</p>
</div>
<div class="links-grid">
<a href="MAIN_DASHBOARD.html" class="link-card">
<span class="link-icon">🏠</span>
<div class="link-title">דשבורד ראשי</div>
<div class="link-desc">הדשבורד המרכזי עם ניווט לכל הדמואים</div>
<div class="version-badge">גרסה אחרונה</div>
</a>
<a href="advanced_breathing_shazam.html" class="link-card">
<span class="link-icon">🫁</span>
<div class="link-title">דשבורד מתקדם</div>
<div class="link-desc">הגרסה האחרונה והמתקדמת ביותר של הדשבורד הראשי</div>
<div class="version-badge">גרסה אחרונה</div>
</a>
<a href="advanced_breathing_shazam (1).html" class="link-card">
<span class="link-icon">🫁</span>
<div class="link-title">דשבורד מתקדם - גרסה 1</div>
<div class="link-desc">גרסה נוספת של הדשבורד המתקדם עם תכונות מתקדמות</div>
<div class="version-badge">גרסה נוספת</div>
</a>
<a href="advanced_breathing_shazam (2).html" class="link-card">
<span class="link-icon">🫁</span>
<div class="link-title">דשבורד מתקדם - גרסה 2</div>
<div class="link-desc">גרסה נוספת של הדשבורד המתקדם עם יכולות נוספות</div>
<div class="version-badge">גרסה נוספת</div>
</a>
<a href="biometric_breathing_system (1).html" class="link-card">
<span class="link-icon">🔬</span>
<div class="link-title">מערכת חיישנים</div>
<div class="link-desc">אינטגרציה עם חיישנים אמיתיים - דופק, נשימה, חמצן</div>
<div class="version-badge">גרסה אחרונה</div>
</a>
<a href="breathing_demo (1).html" class="link-card">
<span class="link-icon">🎯</span>
<div class="link-title">דמו אינטראקטיבי - גרסה 1</div>
<div class="link-desc">דמו חווייתי לזיהוי דפוסי נשימה</div>
<div class="version-badge">גרסה נוספת</div>
</a>
<a href="breathing_demo (2).html" class="link-card">
<span class="link-icon">🎯</span>
<div class="link-title">דמו אינטראקטיבי - גרסה 2</div>
<div class="link-desc">דמו חווייתי לזיהוי דפוסי נשימה</div>
<div class="version-badge">גרסה אחרונה</div>
</a>
<a href="breathing_shazam_project/02_demos/advanced_3d_breathing_demo.html" class="link-card">
<span class="link-icon">🎨</span>
<div class="link-title">דמו תלת-ממדי</div>
<div class="link-desc">הדמיה תלת-ממדית מתקדמת של ריאות</div>
<div class="version-badge">גרסה אחרונה</div>
</a>
<a href="breathing_shazam_landing (1).html" class="link-card">
<span class="link-icon">🚀</span>
<div class="link-title">דף נחיתה</div>
<div class="link-desc">דף נחיתה שיווקי מקצועי</div>
<div class="version-badge">גרסה אחרונה</div>
</a>
<a href="next_gen_biometric_system.html" class="link-card">
<span class="link-icon">⚡</span>
<div class="link-title">מערכת ביומטרית מתקדמת</div>
<div class="link-desc">הדור הבא של מערכת הזיהוי הביומטרי</div>
<div class="version-badge">גרסה אחרונה</div>
</a>
<a href="next_gen_biometric_system (1).html" class="link-card">
<span class="link-icon">⚡</span>
<div class="link-title">מערכת ביומטרית מתקדמת - גרסה 1</div>
<div class="link-desc">גרסה נוספת של הדור הבא של מערכת הזיהוי הביומטרי</div>
<div class="version-badge">גרסה נוספת</div>
</a>
<a href="breathing_data_2025-06-25.json" class="link-card">
<span class="link-icon">📊</span>
<div class="link-title">נתוני נשימה לדוגמה</div>
<div class="link-desc">קובץ JSON עם נתוני נשימה לדוגמה</div>
<div class="version-badge">נתונים</div>
</a>
<a href="breathing_shazam_project/index.html" class="link-card">
<span class="link-icon">📁</span>
<div class="link-title">פרויקט מאורגן</div>
<div class="link-desc">תיקיית הפרויקט המאורגנת עם מבנה מקצועי</div>
<div class="version-badge">מאורגן</div>
</a>
<a href="README_LATEST_VERSIONS.md" class="link-card">
<span class="link-icon">📖</span>
<div class="link-title">תיעוד מפורט</div>
<div class="link-desc">תיעוד מלא של כל הגרסאות והתכונות</div>
<div class="version-badge">עדכני</div>
</a>
</div>
<div class="footer">
<p>© 2025 שאזם נשימות - מערכת זיהוי ביומטרי מתקדמת</p>
<p style="margin-top: 0.5rem; font-size: 0.9rem; opacity: 0.7;">
פותח עם ❤️ בישראל | כל הגרסאות האחרונות נבדקו ועובדות
</p>
</div>
</div>
</body>
</html>