Aviz85 commited on
Commit
6ca3d27
ยท
verified ยท
1 Parent(s): e4f516a

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +309 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Torat Chaim
3
- emoji: โšก
4
- colorFrom: indigo
5
- colorTo: indigo
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: torat-chaim
3
+ emoji: ๐Ÿณ
4
+ colorFrom: pink
5
+ colorTo: green
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,309 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="he" dir="rtl">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>ืชื•ืจืช ื—ื™ื™ื - ืจืฉืช ื—ื‘ืจืชื™ืช ืœืœื•ืžื“ื™ ืชื•ืจื”</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Rubik', sans-serif;
14
+ background-color: #f5f5f5;
15
+ }
16
+
17
+ .hebrew-text {
18
+ font-family: 'Rubik', sans-serif;
19
+ }
20
+
21
+ .scrollbar-hide::-webkit-scrollbar {
22
+ display: none;
23
+ }
24
+
25
+ .scrollbar-hide {
26
+ -ms-overflow-style: none;
27
+ scrollbar-width: none;
28
+ }
29
+
30
+ .talmud-icon {
31
+ background: linear-gradient(135deg, #8e6e53 0%, #5d4037 100%);
32
+ }
33
+
34
+ .torah-icon {
35
+ background: linear-gradient(135deg, #4a6b8a 0%, #2c3e50 100%);
36
+ }
37
+
38
+ .gemara-icon {
39
+ background: linear-gradient(135deg, #6d4c41 0%, #3e2723 100%);
40
+ }
41
+
42
+ .halacha-icon {
43
+ background: linear-gradient(135deg, #5d6d7e 0%, #283747 100%);
44
+ }
45
+
46
+ .nav-link:hover {
47
+ background-color: rgba(255, 255, 255, 0.1);
48
+ }
49
+
50
+ .post-card:hover {
51
+ transform: translateY(-5px);
52
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
53
+ }
54
+
55
+ .transition-all {
56
+ transition: all 0.3s ease;
57
+ }
58
+ </style>
59
+ </head>
60
+ <body class="bg-gray-50 hebrew-text">
61
+ <!-- Header -->
62
+ <header class="bg-blue-800 text-white shadow-lg">
63
+ <div class="container mx-auto px-4 py-3 flex items-center justify-between">
64
+ <div class="flex items-center space-x-4">
65
+ <div class="talmud-icon w-12 h-12 rounded-full flex items-center justify-center text-white">
66
+ <i class="fas fa-book-torah text-2xl"></i>
67
+ </div>
68
+ <h1 class="text-2xl font-bold">ืชื•ืจืช ื—ื™ื™ื</h1>
69
+ </div>
70
+
71
+ <div class="hidden md:flex items-center space-x-6">
72
+ <a href="#" class="nav-link px-3 py-2 rounded-lg transition-all">ื“ืฃ ื”ื‘ื™ืช</a>
73
+ <a href="#" class="nav-link px-3 py-2 rounded-lg transition-all">ื—ื“ืจื™ื</a>
74
+ <a href="#" class="nav-link px-3 py-2 rounded-lg transition-all">ืฉื™ืขื•ืจื™ื</a>
75
+ <a href="#" class="nav-link px-3 py-2 rounded-lg transition-all">ื—ื‘ืจื™ ื”ืงื”ื™ืœื”</a>
76
+ </div>
77
+
78
+ <div class="flex items-center space-x-4">
79
+ <div class="relative">
80
+ <input type="text" placeholder="ื—ื™ืคื•ืฉ..." class="bg-blue-700 text-white placeholder-blue-200 rounded-full py-2 px-4 pl-10 focus:outline-none focus:ring-2 focus:ring-blue-500 w-40 md:w-64">
81
+ <i class="fas fa-search absolute left-3 top-3 text-blue-200"></i>
82
+ </div>
83
+ <button class="md:hidden text-white focus:outline-none">
84
+ <i class="fas fa-bars text-2xl"></i>
85
+ </button>
86
+ <div class="w-10 h-10 rounded-full bg-blue-600 flex items-center justify-center cursor-pointer">
87
+ <i class="fas fa-user text-white"></i>
88
+ </div>
89
+ </div>
90
+ </div>
91
+ </header>
92
+
93
+ <!-- Mobile Menu -->
94
+ <div class="md:hidden bg-blue-700 text-white hidden" id="mobileMenu">
95
+ <div class="container mx-auto px-4 py-2 flex flex-col space-y-2">
96
+ <a href="#" class="nav-link px-3 py-2 rounded-lg">ื“ืฃ ื”ื‘ื™ืช</a>
97
+ <a href="#" class="nav-link px-3 py-2 rounded-lg">ื—ื“ืจื™ื</a>
98
+ <a href="#" class="nav-link px-3 py-2 rounded-lg">ืฉื™ืขื•ืจื™ื</a>
99
+ <a href="#" class="nav-link px-3 py-2 rounded-lg">ื—ื‘ืจื™ ื”ืงื”ื™ืœื”</a>
100
+ </div>
101
+ </div>
102
+
103
+ <!-- Main Content -->
104
+ <main class="container mx-auto px-4 py-6 flex flex-col md:flex-row gap-6">
105
+ <!-- Left Sidebar -->
106
+ <aside class="w-full md:w-1/4 lg:w-1/5 space-y-6">
107
+ <!-- User Profile -->
108
+ <div class="bg-white rounded-lg shadow-md p-4">
109
+ <div class="flex flex-col items-center">
110
+ <div class="w-20 h-20 rounded-full bg-blue-100 flex items-center justify-center mb-3">
111
+ <i class="fas fa-user text-blue-600 text-3xl"></i>
112
+ </div>
113
+ <h3 class="font-bold text-lg">ืจ' ื“ื•ื“ ืœื•ื™</h3>
114
+ <p class="text-gray-600 text-sm">ื™ืจื•ืฉืœื™ื</p>
115
+ <div class="flex space-x-2 mt-2">
116
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">ื’ืžืจื</span>
117
+ <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">ื”ืœื›ื”</span>
118
+ </div>
119
+ </div>
120
+
121
+ <div class="mt-4 pt-4 border-t border-gray-200">
122
+ <div class="flex justify-between text-sm">
123
+ <span class="text-gray-600">ื—ื‘ืจื™ื</span>
124
+ <span class="font-bold">142</span>
125
+ </div>
126
+ <div class="flex justify-between text-sm mt-2">
127
+ <span class="text-gray-600">ืฉื™ืขื•ืจื™ื</span>
128
+ <span class="font-bold">23</span>
129
+ </div>
130
+ <div class="flex justify-between text-sm mt-2">
131
+ <span class="text-gray-600">ืคื•ืกื˜ื™ื</span>
132
+ <span class="font-bold">87</span>
133
+ </div>
134
+ </div>
135
+ </div>
136
+
137
+ <!-- Study Groups -->
138
+ <div class="bg-white rounded-lg shadow-md p-4">
139
+ <h3 class="font-bold text-lg mb-3">ื—ื“ืจื™ ืœื™ืžื•ื“</h3>
140
+ <div class="space-y-3">
141
+ <div class="flex items-center space-x-3 p-2 rounded-lg hover:bg-gray-50 cursor-pointer">
142
+ <div class="torah-icon w-10 h-10 rounded-full flex items-center justify-center text-white">
143
+ <i class="fas fa-scroll"></i>
144
+ </div>
145
+ <span>ื—ื•ืžืฉ ื”ืฉื‘ื•ืข</span>
146
+ </div>
147
+ <div class="flex items-center space-x-3 p-2 rounded-lg hover:bg-gray-50 cursor-pointer">
148
+ <div class="gemara-icon w-10 h-10 rounded-full flex items-center justify-center text-white">
149
+ <i class="fas fa-book"></i>
150
+ </div>
151
+ <span>ื’ืžืจื - ืžืกื›ืช ื‘ื‘ื ืžืฆื™ืขื</span>
152
+ </div>
153
+ <div class="flex items-center space-x-3 p-2 rounded-lg hover:bg-gray-50 cursor-pointer">
154
+ <div class="halacha-icon w-10 h-10 rounded-full flex items-center justify-center text-white">
155
+ <i class="fas fa-balance-scale"></i>
156
+ </div>
157
+ <span>ื”ืœื›ื•ืช ืฉื‘ืช</span>
158
+ </div>
159
+ <div class="flex items-center space-x-3 p-2 rounded-lg hover:bg-gray-50 cursor-pointer">
160
+ <div class="talmud-icon w-10 h-10 rounded-full flex items-center justify-center text-white">
161
+ <i class="fas fa-pray"></i>
162
+ </div>
163
+ <span>ืžื•ืกืจ ื•ื™ืจืืช ืฉืžื™ื</span>
164
+ </div>
165
+ </div>
166
+ <button class="w-full mt-3 bg-gray-100 hover:bg-gray-200 text-gray-800 py-2 px-4 rounded-lg text-sm transition-all">
167
+ ื”ืฆื˜ืจืฃ ืœื—ื“ืจ ื ื•ืกืฃ
168
+ </button>
169
+ </div>
170
+
171
+ <!-- Upcoming Shiurim -->
172
+ <div class="bg-white rounded-lg shadow-md p-4">
173
+ <h3 class="font-bold text-lg mb-3">ืฉื™ืขื•ืจื™ื ืงืจื•ื‘ื™ื</h3>
174
+ <div class="space-y-3">
175
+ <div class="p-3 bg-blue-50 rounded-lg">
176
+ <div class="flex justify-between items-start">
177
+ <div>
178
+ <h4 class="font-medium">ื“ืฃ ื™ื•ืžื™ - ื‘"ืž ื“ืฃ ื›"ื’</h4>
179
+ <p class="text-sm text-gray-600">ืขื ื”ืจื‘ ื›ื”ืŸ</p>
180
+ </div>
181
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">20:00</span>
182
+ </div>
183
+ </div>
184
+ <div class="p-3 bg-green-50 rounded-lg">
185
+ <div class="flex justify-between items-start">
186
+ <div>
187
+ <h4 class="font-medium">ื”ืœื›ื•ืช ืชืคื™ืœื”</h4>
188
+ <p class="text-sm text-gray-600">ืขื ื”ืจื‘ ืœื•ื™</p>
189
+ </div>
190
+ <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">21:30</span>
191
+ </div>
192
+ </div>
193
+ <div class="p-3 bg-purple-50 rounded-lg">
194
+ <div class="flex justify-between items-start">
195
+ <div>
196
+ <h4 class="font-medium">ืคืจืฉืช ื”ืฉื‘ื•ืข</h4>
197
+ <p class="text-sm text-gray-600">ืขื ื”ืจื‘ ื’ืจื•ืกืžืŸ</p>
198
+ </div>
199
+ <span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">ืžื—ืจ 18:00</span>
200
+ </div>
201
+ </div>
202
+ </div>
203
+ <button class="w-full mt-3 bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-lg text-sm transition-all">
204
+ ืฆืคื” ื‘ืœื•ื— ื”ืฉื™ืขื•ืจื™ื ื”ืžืœื
205
+ </button>
206
+ </div>
207
+ </aside>
208
+
209
+ <!-- Main Feed -->
210
+ <div class="w-full md:w-2/4 lg:w-3/5 space-y-6">
211
+ <!-- Create Post -->
212
+ <div class="bg-white rounded-lg shadow-md p-4">
213
+ <div class="flex items-center space-x-3">
214
+ <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center">
215
+ <i class="fas fa-user text-blue-600"></i>
216
+ </div>
217
+ <input type="text" placeholder="ืžื” ืืชื” ืœื•ืžื“ ื”ื™ื•ื?" class="bg-gray-100 rounded-full py-2 px-4 flex-grow focus:outline-none focus:ring-2 focus:ring-blue-500">
218
+ </div>
219
+ <div class="flex justify-between mt-3 pt-3 border-t border-gray-200">
220
+ <button class="flex items-center space-x-2 text-gray-600 hover:text-blue-600 transition-all">
221
+ <i class="fas fa-scroll text-blue-500"></i>
222
+ <span>ืžืงื•ืจ</span>
223
+ </button>
224
+ <button class="flex items-center space-x-2 text-gray-600 hover:text-green-600 transition-all">
225
+ <i class="fas fa-question-circle text-green-500"></i>
226
+ <span>ืฉืืœื”</span>
227
+ </button>
228
+ <button class="flex items-center space-x-2 text-gray-600 hover:text-purple-600 transition-all">
229
+ <i class="fas fa-chalkboard-teacher text-purple-500"></i>
230
+ <span>ืฉื™ืขื•ืจ</span>
231
+ </button>
232
+ <button class="flex items-center space-x-2 text-gray-600 hover:text-orange-600 transition-all">
233
+ <i class="fas fa-calendar-alt text-orange-500"></i>
234
+ <span>ืื™ืจื•ืข</span>
235
+ </button>
236
+ </div>
237
+ </div>
238
+
239
+ <!-- Posts -->
240
+ <div class="space-y-6">
241
+ <!-- Post 1 -->
242
+ <div class="bg-white rounded-lg shadow-md p-4 post-card transition-all">
243
+ <div class="flex justify-between items-start">
244
+ <div class="flex items-center space-x-3">
245
+ <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center">
246
+ <i class="fas fa-user text-blue-600"></i>
247
+ </div>
248
+ <div>
249
+ <h3 class="font-bold">ืจ' ืื‘ืจื”ื ื›ื”ืŸ</h3>
250
+ <p class="text-sm text-gray-600">ืœืคื ื™ ืฉืขื” โ€ข <span class="text-blue-600">ื’ืžืจื ื‘ื‘ื ืžืฆื™ืขื</span></p>
251
+ </div>
252
+ </div>
253
+ <button class="text-gray-400 hover:text-gray-600">
254
+ <i class="fas fa-ellipsis-h"></i>
255
+ </button>
256
+ </div>
257
+
258
+ <div class="mt-4">
259
+ <p class="text-gray-800">
260
+ ื”ื™ื•ื ืœืžื“ื ื• ื‘ื“ืฃ ื›"ื’ ืข"ื ืืช ื”ืกื•ื’ื™ื ืฉืœ "ื”ืžื•ืฆื ืžืฆื™ืื” ืœื ื™ืงื—ื ื”". ื™ืฉ ื›ืืŸ ืฉืืœื” ืžืขื ื™ื™ื ืช ืขืœ ื’ื“ืจื™ ื™ื™ืื•ืฉ, ืื ืžื™ืฉื”ื• ืจื•ืฆื” ืœื”ืขื™ืจ ื”ืขืจื” ืื• ืœื”ื‘ื™ื ืžืงื•ืจื•ืช ื ื•ืกืคื™ื ืืฉืžื— ืœืฉืžื•ืข.
261
+ </p>
262
+
263
+ <div class="mt-4 bg-gray-50 p-3 rounded-lg">
264
+ <div class="flex items-center space-x-2 text-blue-600 mb-2">
265
+ <i class="fas fa-scroll"></i>
266
+ <span class="font-medium">ืžืงื•ืจ: ื‘ื‘ื ืžืฆื™ืขื ื›"ื’ ืข"ื</span>
267
+ </div>
268
+ <p class="text-gray-700 font-medium">"ื”ืžื•ืฆื ืžืฆื™ืื” ืœื ื™ืงื—ื ื”, ื•ืื ืœืงื—ื” - ืžืขืœ"</p>
269
+ </div>
270
+ </div>
271
+
272
+ <div class="mt-4 pt-3 border-t border-gray-200 flex justify-between">
273
+ <button class="flex items-center space-x-2 text-gray-500 hover:text-blue-600">
274
+ <i class="far fa-thumbs-up"></i>
275
+ <span>15</span>
276
+ </button>
277
+ <button class="flex items-center space-x-2 text-gray-500 hover:text-green-600">
278
+ <i class="far fa-comment"></i>
279
+ <span>7 ืชื’ื•ื‘ื•ืช</span>
280
+ </button>
281
+ <button class="flex items-center space-x-2 text-gray-500 hover:text-red-600">
282
+ <i class="far fa-bookmark"></i>
283
+ <span>ืฉืžื•ืจ</span>
284
+ </button>
285
+ </div>
286
+ </div>
287
+
288
+ <!-- Post 2 -->
289
+ <div class="bg-white rounded-lg shadow-md p-4 post-card transition-all">
290
+ <div class="flex justify-between items-start">
291
+ <div class="flex items-center space-x-3">
292
+ <div class="w-10 h-10 rounded-full bg-green-100 flex items-center justify-center">
293
+ <i class="fas fa-user text-green-600"></i>
294
+ </div>
295
+ <div>
296
+ <h3 class="font-bold">ื”ืจื‘ ื“ื ื™ืืœ ืœื•ื™</h3>
297
+ <p class="text-sm text-gray-600">ืืชืžื•ืœ โ€ข <span class="text-green-600">ื”ืœื›ื•ืช ืฉื‘ืช</span></p>
298
+ </div>
299
+ </div>
300
+ <button class="text-gray-400 hover:text-gray-600">
301
+ <i class="fas fa-ellipsis-h"></i>
302
+ </button>
303
+ </div>
304
+
305
+ <div class="mt-4">
306
+ <p class="text-gray-800">
307
+ ืฉื™ืขื•ืจ ื”ืœื›ื” ื”ืขืจื‘ ื™ืขืกื•ืง ื‘ื”ืœื›ื•ืช ื‘ื™ืฉื•ืœ ื‘ืฉื‘ืช. ื ื“ื•ืŸ ื‘ืฉืืœื•ืช ื›ืžื•: ื”ืื ืžื•ืชืจ ืœืฉื™ื ืกื™ืจ ืขืœ ืคืœื˜ื” ืœืคื ื™ ืฉื‘ืช ืื ื”ืคืœื˜ื” ืœื ืžื›ื•ืกื”? ืžื” ื”ื“ื™ืŸ ื‘ืžื™ื—ื ืฉื‘ืช ืื•ื˜ื•ืžื˜ื™? ื•ื›
308
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - ๐Ÿงฌ <a href="https://enzostvs-deepsite.hf.space?remix=Aviz85/torat-chaim" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
309
+ </html>