progitanas1 commited on
Commit
18f57ad
·
verified ·
1 Parent(s): aa4b66c

creez les html lies - Initial Deployment

Browse files
Files changed (5) hide show
  1. README.md +6 -4
  2. calendrier.html +346 -0
  3. evaluation.html +314 -0
  4. index.html +399 -18
  5. projets.html +231 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Educollab
3
- emoji: 🏆
4
- colorFrom: purple
5
  colorTo: pink
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: educollab
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
  colorTo: pink
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
calendrier.html ADDED
@@ -0,0 +1,346 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Calendrier - EduCollab</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
9
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ <style>
14
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
15
+ body {
16
+ font-family: 'Inter', sans-serif;
17
+ background-color: #f8fafc;
18
+ }
19
+ .calendar-day:hover {
20
+ background-color: #f1f5f9;
21
+ transform: scale(1.05);
22
+ }
23
+ .calendar-day.today {
24
+ background-color: #6366f1;
25
+ color: white;
26
+ }
27
+ .event-dot {
28
+ width: 8px;
29
+ height: 8px;
30
+ border-radius: 50%;
31
+ display: inline-block;
32
+ margin-right: 2px;
33
+ }
34
+ .milestone {
35
+ border-left: 4px solid #6366f1;
36
+ }
37
+ .animate-pulse-slow {
38
+ animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
39
+ }
40
+ @keyframes pulse {
41
+ 0%, 100% { opacity: 1; }
42
+ 50% { opacity: .7; }
43
+ }
44
+ </style>
45
+ </head>
46
+ <body class="text-gray-800">
47
+ <!-- Navigation -->
48
+ <nav class="bg-white shadow-sm">
49
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
50
+ <div class="flex justify-between h-16">
51
+ <div class="flex items-center">
52
+ <a href="index.html" class="flex-shrink-0 flex items-center">
53
+ <i data-feather="users" class="text-indigo-600"></i>
54
+ <span class="ml-2 text-xl font-bold text-indigo-600">EduCollab</span>
55
+ </a>
56
+ </div>
57
+ <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
58
+ <a href="index.html" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Accueil</a>
59
+ <a href="projets.html" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Projets</a>
60
+ <a href="calendrier.html" class="text-indigo-600 px-3 py-2 text-sm font-medium">Calendrier</a>
61
+ <a href="evaluation.html" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Évaluation</a>
62
+ </div>
63
+ <div class="flex items-center">
64
+ <button class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-700">
65
+ Mon compte
66
+ </button>
67
+ </div>
68
+ </div>
69
+ </div>
70
+ </nav>
71
+
72
+ <!-- Header -->
73
+ <div class="bg-white shadow">
74
+ <div class="max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8">
75
+ <div class="flex justify-between items-center">
76
+ <h1 class="text-2xl font-bold text-gray-900">Calendrier interactif</h1>
77
+ <button class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-700 flex items-center">
78
+ <i data-feather="plus" class="w-4 h-4 mr-2"></i>
79
+ Nouvel événement
80
+ </button>
81
+ </div>
82
+ </div>
83
+ </div>
84
+
85
+ <!-- Main Content -->
86
+ <div class="max-w-7xl mx-auto py-6 sm:px-6 lg:px-8">
87
+ <div class="px-4 py-6 sm:px-0">
88
+ <!-- Calendar Navigation -->
89
+ <div class="bg-white rounded-lg shadow-sm p-6 mb-6">
90
+ <div class="flex items-center justify-between mb-6">
91
+ <div class="flex items-center space-x-4">
92
+ <button class="p-2 rounded-md hover:bg-gray-100">
93
+ <i data-feather="chevron-left" class="w-5 h-5"></i>
94
+ </button>
95
+ <h2 class="text-xl font-semibold text-gray-900">Décembre 2023</h2>
96
+ <button class="p-2 rounded-md hover:bg-gray-100">
97
+ <i data-feather="chevron-right" class="w-5 h-5"></i>
98
+ </button>
99
+ </div>
100
+ <div class="flex space-x-2">
101
+ <button class="px-4 py-2 bg-indigo-600 text-white rounded-md text-sm font-medium">Mois</button>
102
+ <button class="px-4 py-2 bg-white text-gray-700 rounded-md text-sm font-medium border border-gray-300">Semaine</button>
103
+ <button class="px-4 py-2 bg-white text-gray-700 rounded-md text-sm font-medium border border-gray-300">Jour</button>
104
+ </div>
105
+ </div>
106
+
107
+ <!-- Calendar Grid -->
108
+ <div class="grid grid-cols-7 gap-2 mb-2">
109
+ <div class="text-center text-sm font-medium text-gray-500 py-2">Lun</div>
110
+ <div class="text-center text-sm font-medium text-gray-500 py-2">Mar</div>
111
+ <div class="text-center text-sm font-medium text-gray-500 py-2">Mer</div>
112
+ <div class="text-center text-sm font-medium text-gray-500 py-2">Jeu</div>
113
+ <div class="text-center text-sm font-medium text-gray-500 py-2">Ven</div>
114
+ <div class="text-center text-sm font-medium text-gray-500 py-2">Sam</div>
115
+ <div class="text-center text-sm font-medium text-gray-500 py-2">Dim</div>
116
+ </div>
117
+
118
+ <div class="grid grid-cols-7 gap-2">
119
+ <!-- Calendar Days -->
120
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
121
+ <div class="text-right text-sm">27</div>
122
+ </div>
123
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
124
+ <div class="text-right text-sm">28</div>
125
+ </div>
126
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
127
+ <div class="text-right text-sm">29</div>
128
+ </div>
129
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
130
+ <div class="text-right text-sm">30</div>
131
+ </div>
132
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
133
+ <div class="text-right text-sm">1</div>
134
+ <div class="mt-1 space-y-1">
135
+ <div class="text-xs bg-blue-100 text-blue-800 p-1 rounded">Réunion équipe</div>
136
+ </div>
137
+ </div>
138
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
139
+ <div class="text-right text-sm">2</div>
140
+ </div>
141
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
142
+ <div class="text-right text-sm">3</div>
143
+ </div>
144
+
145
+ <!-- Week 2 -->
146
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
147
+ <div class="text-right text-sm">4</div>
148
+ <div class="mt-1 space-y-1">
149
+ <div class="text-xs bg-purple-100 text-purple-800 p-1 rounded">Échéance partielle</div>
150
+ </div>
151
+ </div>
152
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
153
+ <div class="text-right text-sm">5</div>
154
+ </div>
155
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
156
+ <div class="text-right text-sm">6</div>
157
+ </div>
158
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
159
+ <div class="text-right text-sm">7</div>
160
+ </div>
161
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
162
+ <div class="text-right text-sm">8</div>
163
+ </div>
164
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
165
+ <div class="text-right text-sm">9</div>
166
+ </div>
167
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
168
+ <div class="text-right text-sm">10</div>
169
+ </div>
170
+
171
+ <!-- Week 3 -->
172
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
173
+ <div class="text-right text-sm">11</div>
174
+ </div>
175
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
176
+ <div class="text-right text-sm">12</div>
177
+ <div class="mt-1 space-y-1">
178
+ <div class="text-xs bg-red-100 text-red-800 p-1 rounded">Présentation</div>
179
+ </div>
180
+ </div>
181
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
182
+ <div class="text-right text-sm">13</div>
183
+ </div>
184
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
185
+ <div class="text-right text-sm">14</div>
186
+ </div>
187
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
188
+ <div class="text-right text-sm">15</div>
189
+ </div>
190
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
191
+ <div class="text-right text-sm">16</div>
192
+ </div>
193
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
194
+ <div class="text-right text-sm">17</div>
195
+ </div>
196
+
197
+ <!-- Week 4 -->
198
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
199
+ <div class="text-right text-sm">18</div>
200
+ </div>
201
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
202
+ <div class="text-right text-sm">19</div>
203
+ </div>
204
+ <div class="calendar-day today h-24 p-2 border border-indigo-200 rounded-md cursor-pointer transition-all">
205
+ <div class="text-right text-sm">20</div>
206
+ <div class="mt-1 space-y-1">
207
+ <div class="text-xs bg-green-100 text-green-800 p-1 rounded">Aujourd'hui</div>
208
+ <div class="text-xs bg-yellow-100 text-yellow-800 p-1 rounded">Révision</div>
209
+ </div>
210
+ </div>
211
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
212
+ <div class="text-right text-sm">21</div>
213
+ </div>
214
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
215
+ <div class="text-right text-sm">22</div>
216
+ </div>
217
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
218
+ <div class="text-right text-sm">23</div>
219
+ </div>
220
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
221
+ <div class="text-right text-sm">24</div>
222
+ </div>
223
+
224
+ <!-- Week 5 -->
225
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
226
+ <div class="text-right text-sm">25</div>
227
+ </div>
228
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
229
+ <div class="text-right text-sm">26</div>
230
+ <div class="mt-1 space-y-1">
231
+ <div class="text-xs bg-indigo-100 text-indigo-800 p-1 rounded">Échéance finale</div>
232
+ </div>
233
+ </div>
234
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
235
+ <div class="text-right text-sm">27</div>
236
+ </div>
237
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
238
+ <div class="text-right text-sm">28</div>
239
+ </div>
240
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
241
+ <div class="text-right text-sm">29</div>
242
+ </div>
243
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
244
+ <div class="text-right text-sm">30</div>
245
+ </div>
246
+ <div class="calendar-day h-24 p-2 border border-gray-200 rounded-md cursor-pointer transition-all">
247
+ <div class="text-right text-sm">31</div>
248
+ </div>
249
+ </div>
250
+ </div>
251
+
252
+ <!-- Upcoming Events -->
253
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-6">
254
+ <!-- Upcoming Milestones -->
255
+ <div class="bg-white rounded-lg shadow-sm p-6">
256
+ <h3 class="text-lg font-semibold text-gray-900 mb-4">Jalons à venir</h3>
257
+ <div class="space-y-4">
258
+ <div class="milestone pl-4 py-2">
259
+ <div class="flex justify-between items-start">
260
+ <div>
261
+ <h4 class="font-medium text-gray-900">Soumission intermédiaire</h4>
262
+ <p class="text-sm text-gray-500">Projet IA & Machine Learning</p>
263
+ </div>
264
+ <span class="text-sm text-indigo-600">Dans 3 jours</span>
265
+ </div>
266
+ </div>
267
+ <div class="milestone pl-4 py-2">
268
+ <div class="flex justify-between items-start">
269
+ <div>
270
+ <h4 class="font-medium text-gray-900">Présentation finale</h4>
271
+ <p class="text-sm text-gray-500">Application Mobile Éducative</p>
272
+ </div>
273
+ <span class="text-sm text-indigo-600">Dans 12 jours</span>
274
+ </div>
275
+ </div>
276
+ <div class="milestone pl-4 py-2">
277
+ <div class="flex justify-between items-start">
278
+ <div>
279
+ <h4 class="font-medium text-gray-900">Révision de code</h4>
280
+ <p class="text-sm text-gray-500">Analyse de Données Éducatives</p>
281
+ </div>
282
+ <span class="text-sm text-indigo-600">Demain</span>
283
+ </div>
284
+ </div>
285
+ </div>
286
+ </div>
287
+
288
+ <!-- Recent Activity -->
289
+ <div class="bg-white rounded-lg shadow-sm p-6 lg:col-span-2">
290
+ <h3 class="text-lg font-semibold text-gray-900 mb-4">Activité récente</h3>
291
+ <div class="space-y-4">
292
+ <div class="flex items-start">
293
+ <div class="flex-shrink-0">
294
+ <img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/women/32.jpg" alt="">
295
+ </div>
296
+ <div class="ml-4">
297
+ <p class="text-sm text-gray-900"><span class="font-medium">Sophie Martin</span> a terminé la tâche "Interface utilisateur"</p>
298
+ <p class="text-xs text-gray-500">Il y a 2 heures</p>
299
+ </div>
300
+ </div>
301
+ <div class="flex items-start">
302
+ <div class="flex-shrink-0">
303
+ <img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/men/41.jpg" alt="">
304
+ </div>
305
+ <div class="ml-4">
306
+ <p class="text-sm text-gray-900"><span class="font-medium">Thomas Leroy</span> a commenté le document de spécifications</p>
307
+ <p class="text-xs text-gray-500">Il y a 5 heures</p>
308
+ </div>
309
+ </div>
310
+ <div class="flex items-start">
311
+ <div class="flex-shrink-0">
312
+ <img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="">
313
+ </div>
314
+ <div class="ml-4">
315
+ <p class="text-sm text-gray-900"><span class="font-medium">Camille Dubois</span> a uploadé de nouveaux assets design</p>
316
+ <p class="text-xs text-gray-500">Hier à 14:32</p>
317
+ </div>
318
+ </div>
319
+ </div>
320
+ </div>
321
+ </div>
322
+ </div>
323
+ </div>
324
+
325
+ <script>
326
+ AOS.init({
327
+ duration: 800,
328
+ easing: 'ease-in-out',
329
+ once: true
330
+ });
331
+ feather.replace();
332
+
333
+ // Highlight today's date
334
+ document.querySelectorAll('.calendar-day').forEach(day => {
335
+ day.addEventListener('click', function() {
336
+ document.querySelectorAll('.calendar-day').forEach(d => {
337
+ d.classList.remove('today');
338
+ d.classList.remove('border-indigo-200');
339
+ });
340
+ this.classList.add('today');
341
+ this.classList.add('border-indigo-200');
342
+ });
343
+ });
344
+ </script>
345
+ </body>
346
+ </html>
evaluation.html ADDED
@@ -0,0 +1,314 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Évaluation - EduCollab</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
9
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ <style>
14
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
15
+ body {
16
+ font-family: 'Inter', sans-serif;
17
+ background-color: #f8fafc;
18
+ }
19
+ .rating-star {
20
+ cursor: pointer;
21
+ transition: transform 0.2s, color 0.2s;
22
+ }
23
+ .rating-star:hover {
24
+ transform: scale(1.2);
25
+ }
26
+ .progress-ring {
27
+ transform: rotate(-90deg);
28
+ }
29
+ .progress-ring__circle {
30
+ transition: stroke-dashoffset 0.5s;
31
+ transform-origin: 50% 50%;
32
+ }
33
+ .evaluation-card:hover {
34
+ transform: translateY(-2px);
35
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
36
+ }
37
+ .animate-bounce-slow {
38
+ animation: bounce 2s infinite;
39
+ }
40
+ @keyframes bounce {
41
+ 0%, 100% { transform: translateY(0); }
42
+ 50% { transform: translateY(-5px); }
43
+ }
44
+ </style>
45
+ </head>
46
+ <body class="text-gray-800">
47
+ <!-- Navigation -->
48
+ <nav class="bg-white shadow-sm">
49
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
50
+ <div class="flex justify-between h-16">
51
+ <div class="flex items-center">
52
+ <a href="index.html" class="flex-shrink-0 flex items-center">
53
+ <i data-feather="users" class="text-indigo-600"></i>
54
+ <span class="ml-2 text-xl font-bold text-indigo-600">EduCollab</span>
55
+ </a>
56
+ </div>
57
+ <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
58
+ <a href="index.html" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Accueil</a>
59
+ <a href="projets.html" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Projets</a>
60
+ <a href="calendrier.html" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Calendrier</a>
61
+ <a href="evaluation.html" class="text-indigo-600 px-3 py-2 text-sm font-medium">Évaluation</a>
62
+ </div>
63
+ <div class="flex items-center">
64
+ <button class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-700">
65
+ Mon compte
66
+ </button>
67
+ </div>
68
+ </div>
69
+ </div>
70
+ </nav>
71
+
72
+ <!-- Header -->
73
+ <div class="bg-white shadow">
74
+ <div class="max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8">
75
+ <div class="flex justify-between items-center">
76
+ <h1 class="text-2xl font-bold text-gray-900">Évaluation collaborative</h1>
77
+ <div class="flex items-center space-x-2 text-sm text-gray-500">
78
+ <i data-feather="info" class="w-4 h-4"></i>
79
+ <span>Système d'évaluation par les pairs et enseignants</span>
80
+ </div>
81
+ </div>
82
+ </div>
83
+ </div>
84
+
85
+ <!-- Main Content -->
86
+ <div class="max-w-7xl mx-auto py-6 sm:px-6 lg:px-8">
87
+ <div class="px-4 py-6 sm:px-0">
88
+ <!-- Stats Overview -->
89
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8">
90
+ <div class="bg-white rounded-lg shadow-sm p-6">
91
+ <div class="flex items-center">
92
+ <div class="flex-shrink-0">
93
+ <div class="w-12 h-12 bg-indigo-100 rounded-full flex items-center justify-center">
94
+ <i data-feather="clipboard" class="w-6 h-6 text-indigo-600"></i>
95
+ </div>
96
+ </div>
97
+ <div class="ml-4">
98
+ <h3 class="text-lg font-semibold text-gray-900">12</h3>
99
+ <p class="text-sm text-gray-500">Projets évalués</p>
100
+ </div>
101
+ </div>
102
+ </div>
103
+ <div class="bg-white rounded-lg shadow-sm p-6">
104
+ <div class="flex items-center">
105
+ <div class="flex-shrink-0">
106
+ <div class="w-12 h-12 bg-green-100 rounded-full flex items-center justify-center">
107
+ <i data-feather="star" class="w-6 h-6 text-green-600"></i>
108
+ </div>
109
+ </div>
110
+ <div class="ml-4">
111
+ <h3 class="text-lg font-semibold text-gray-900">4.2/5</h3>
112
+ <p class="text-sm text-gray-500">Moyenne générale</p>
113
+ </div>
114
+ </div>
115
+ </div>
116
+ <div class="bg-white rounded-lg shadow-sm p-6">
117
+ <div class="flex items-center">
118
+ <div class="flex-shrink-0">
119
+ <div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center">
120
+ <i data-feather="users" class="w-6 h-6 text-blue-600"></i>
121
+ </div>
122
+ </div>
123
+ <div class="ml-4">
124
+ <h3 class="text-lg font-semibold text-gray-900">8</h3>
125
+ <p class="text-sm text-gray-500">Évaluations en attente</p>
126
+ </div>
127
+ </div>
128
+ </div>
129
+ </div>
130
+
131
+ <!-- Evaluation Tabs -->
132
+ <div class="bg-white rounded-lg shadow-sm mb-8">
133
+ <div class="border-b border-gray-200">
134
+ <nav class="flex -mb-px">
135
+ <a href="#" class="border-b-2 border-indigo-500 text-indigo-600 px-4 py-4 text-sm font-medium">À évaluer</a>
136
+ <a href="#" class="border-b-2 border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 px-4 py-4 text-sm font-medium">Évaluations reçues</a>
137
+ <a href="#" class="border-b-2 border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 px-4 py-4 text-sm font-medium">Historique</a>
138
+ </nav>
139
+ </div>
140
+ </div>
141
+
142
+ <!-- Evaluation Cards -->
143
+ <div class="grid grid-cols-1 gap-6">
144
+ <!-- Evaluation Card 1 -->
145
+ <div class="bg-white rounded-lg shadow-sm border border-gray-200 evaluation-card transition-all duration-300">
146
+ <div class="p-6">
147
+ <div class="flex justify-between items-start mb-4">
148
+ <div>
149
+ <h3 class="text-lg font-semibold text-gray-900">Projet IA & Machine Learning</h3>
150
+ <p class="text-sm text-gray-500">Développement d'un système de recommandation intelligent</p>
151
+ </div>
152
+ <span class="px-3 py-1 bg-yellow-100 text-yellow-800 text-xs font-medium rounded-full">En attente</span>
153
+ </div>
154
+
155
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
156
+ <!-- Team Members -->
157
+ <div>
158
+ <h4 class="text-sm font-medium text-gray-900 mb-3">Membres de l'équipe</h4>
159
+ <div class="space-y-3">
160
+ <div class="flex items-center">
161
+ <img class="w-8 h-8 rounded-full" src="https://randomuser.me/api/portraits/women/32.jpg" alt="">
162
+ <div class="ml-3">
163
+ <p class="text-sm font-medium text-gray-900">Sophie Martin</p>
164
+ <p class="text-xs text-gray-500">Design UI/UX</p>
165
+ </div>
166
+ </div>
167
+ <div class="flex items-center">
168
+ <img class="w-8 h-8 rounded-full" src="https://randomuser.me/api/portraits/men/41.jpg" alt="">
169
+ <div class="ml-3">
170
+ <p class="text-sm font-medium text-gray-900">Thomas Leroy</p>
171
+ <p class="text-xs text-gray-500">Développement Backend</p>
172
+ </div>
173
+ </div>
174
+ <div class="flex items-center">
175
+ <img class="w-8 h-8 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="">
176
+ <div class="ml-3">
177
+ <p class="text-sm font-medium text-gray-900">Camille Dubois</p>
178
+ <p class="text-xs text-gray-500">Data Science</p>
179
+ </div>
180
+ </div>
181
+ </div>
182
+ </div>
183
+
184
+ <!-- Evaluation Progress -->
185
+ <div>
186
+ <h4 class="text-sm font-medium text-gray-900 mb-3">Progression de l'évaluation</h4>
187
+ <div class="space-y-4">
188
+ <div>
189
+ <div class="flex justify-between text-sm text-gray-500 mb-1">
190
+ <span>Évaluations complétées</span>
191
+ <span>1/3</span>
192
+ </div>
193
+ <div class="w-full bg-gray-200 rounded-full h-2">
194
+ <div class="bg-indigo-600 h-2 rounded-full" style="width: 33%"></div>
195
+ </div>
196
+ </div>
197
+ <div class="flex items-center text-sm text-gray-500">
198
+ <i data-feather="clock" class="w-4 h-4 mr-1"></i>
199
+ <span>Échéance: 25/12/2023</span>
200
+ </div>
201
+ </div>
202
+ </div>
203
+ </div>
204
+
205
+ <div class="flex justify-end space-x-3">
206
+ <button class="px-4 py-2 border border-gray-300 rounded-md text-sm font-medium text-gray-700 hover:bg-gray-50">
207
+ Voir le projet
208
+ </button>
209
+ <button class="px-4 py-2 bg-indigo-600 text-white rounded-md text-sm font-medium hover:bg-indigo-700 flex items-center">
210
+ <i data-feather="edit" class="w-4 h-4 mr-2"></i>
211
+ Commencer l'évaluation
212
+ </button>
213
+ </div>
214
+ </div>
215
+ </div>
216
+
217
+ <!-- Evaluation Card 2 -->
218
+ <div class="bg-white rounded-lg shadow-sm border border-gray-200 evaluation-card transition-all duration-300">
219
+ <div class="p-6">
220
+ <div class="flex justify-between items-start mb-4">
221
+ <div>
222
+ <h3 class="text-lg font-semibold text-gray-900">Application Mobile Éducative</h3>
223
+ <p class="text-sm text-gray-500">Création d'une application pour l'apprentissage des langues</p>
224
+ </div>
225
+ <span class="px-3 py-1 bg-yellow-100 text-yellow-800 text-xs font-medium rounded-full">En attente</span>
226
+ </div>
227
+
228
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
229
+ <!-- Team Members -->
230
+ <div>
231
+ <h4 class="text-sm font-medium text-gray-900 mb-3">Membres de l'équipe</h4>
232
+ <div class="space-y-3">
233
+ <div class="flex items-center">
234
+ <img class="w-8 h-8 rounded-full" src="https://randomuser.me/api/portraits/men/22.jpg" alt="">
235
+ <div class="ml-3">
236
+ <p class="text-sm font-medium text-gray-900">Lucas Bernard</p>
237
+ <p class="text-xs text-gray-500">Développement Mobile</p>
238
+ </div>
239
+ </div>
240
+ <div class="flex items-center">
241
+ <img class="w-8 h-8 rounded-full" src="https://randomuser.me/api/portraits/women/45.jpg" alt="">
242
+ <div class="ml-3">
243
+ <p class="text-sm font-medium text-gray-900">Émilie Petit</p>
244
+ <p class="text-xs text-gray-500">Contenu Pédagogique</p>
245
+ </div>
246
+ </div>
247
+ </div>
248
+ </div>
249
+
250
+ <!-- Evaluation Progress -->
251
+ <div>
252
+ <h4 class="text-sm font-medium text-gray-900 mb-3">Progression de l'évaluation</h4>
253
+ <div class="space-y-4">
254
+ <div>
255
+ <div class="flex justify-between text-sm text-gray-500 mb-1">
256
+ <span>Évaluations complétées</span>
257
+ <span>0/2</span>
258
+ </div>
259
+ <div class="w-full bg-gray-200 rounded-full h-2">
260
+ <div class="bg-indigo-600 h-2 rounded-full" style="width: 0%"></div>
261
+ </div>
262
+ </div>
263
+ <div class="flex items-center text-sm text-gray-500">
264
+ <i data-feather="clock" class="w-4 h-4 mr-1"></i>
265
+ <span>Échéance: 02/01/2024</span>
266
+ </div>
267
+ </div>
268
+ </div>
269
+ </div>
270
+
271
+ <div class="flex justify-end space-x-3">
272
+ <button class="px-4 py-2 border border-gray-300 rounded-md text-sm font-medium text-gray-700 hover:bg-gray-50">
273
+ Voir le projet
274
+ </button>
275
+ <button class="px-4 py-2 bg-indigo-600 text-white rounded-md text-sm font-medium hover:bg-indigo-700 flex items-center">
276
+ <i data-feather="edit" class="w-4 h-4 mr-2"></i>
277
+ Commencer l'évaluation
278
+ </button>
279
+ </div>
280
+ </div>
281
+ </div>
282
+ </div>
283
+ </div>
284
+ </div>
285
+
286
+ <script>
287
+ AOS.init({
288
+ duration: 800,
289
+ easing: 'ease-in-out',
290
+ once: true
291
+ });
292
+ feather.replace();
293
+
294
+ // Star rating functionality
295
+ document.querySelectorAll('.rating-star').forEach(star => {
296
+ star.addEventListener('click', function() {
297
+ const rating = this.getAttribute('data-rating');
298
+ const container = this.closest('.rating-container');
299
+
300
+ // Update all stars up to the clicked one
301
+ container.querySelectorAll('.rating-star').forEach(s => {
302
+ if (s.getAttribute('data-rating') <= rating) {
303
+ s.classList.add('text-yellow-400');
304
+ s.classList.remove('text-gray-300');
305
+ } else {
306
+ s.classList.remove('text-yellow-400');
307
+ s.classList.add('text-gray-300');
308
+ }
309
+ });
310
+ });
311
+ });
312
+ </script>
313
+ </body>
314
+ </html>
index.html CHANGED
@@ -1,19 +1,400 @@
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="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>EduCollab - Plateforme de Gestion de Projets Éducatifs</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
9
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ <style>
14
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
15
+ body {
16
+ font-family: 'Inter', sans-serif;
17
+ background-color: #f8fafc;
18
+ }
19
+ .gradient-bg {
20
+ background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
21
+ }
22
+ .project-card:hover {
23
+ transform: translateY(-5px);
24
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
25
+ }
26
+ .timeline-item::before {
27
+ content: '';
28
+ position: absolute;
29
+ left: -38px;
30
+ top: 0;
31
+ width: 20px;
32
+ height: 20px;
33
+ border-radius: 50%;
34
+ background: #6366f1;
35
+ }
36
+ .animate-float {
37
+ animation: float 6s ease-in-out infinite;
38
+ }
39
+ @keyframes float {
40
+ 0% { transform: translateY(0px); }
41
+ 50% { transform: translateY(-20px); }
42
+ 100% { transform: translateY(0px); }
43
+ }
44
+ </style>
45
+ </head>
46
+ <body class="text-gray-800">
47
+ <!-- Navigation -->
48
+ <nav class="bg-white shadow-sm">
49
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
50
+ <div class="flex justify-between h-16">
51
+ <div class="flex items-center">
52
+ <div class="flex-shrink-0 flex items-center">
53
+ <i data-feather="users" class="text-indigo-600"></i>
54
+ <span class="ml-2 text-xl font-bold text-indigo-600">EduCollab</span>
55
+ </div>
56
+ </div>
57
+ <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
58
+ <a href="index.html" class="text-indigo-600 px-3 py-2 text-sm font-medium">Accueil</a>
59
+ <a href="projets.html" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Projets</a>
60
+ <a href="calendrier.html" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Calendrier</a>
61
+ <a href="evaluation.html" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Évaluation</a>
62
+ </div>
63
+ <div class="flex items-center">
64
+ <button class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-700">
65
+ Connexion
66
+ </button>
67
+ </div>
68
+ </div>
69
+ </div>
70
+ </nav>
71
+
72
+ <!-- Hero Section -->
73
+ <div class="gradient-bg text-white">
74
+ <div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
75
+ <div class="text-center">
76
+ <h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl">
77
+ Collaborez, Planifiez, Réussissez
78
+ </h1>
79
+ <p class="mt-6 max-w-lg mx-auto text-xl">
80
+ La plateforme intuitive pour gérer vos projets éducatifs en équipe avec une expérience gamifiée.
81
+ </p>
82
+ <div class="mt-10 flex justify-center">
83
+ <div class="inline-flex rounded-md shadow">
84
+ <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-gray-50">
85
+ Commencer un projet
86
+ </a>
87
+ </div>
88
+ <div class="ml-3 inline-flex">
89
+ <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-500 bg-opacity-60 hover:bg-opacity-70">
90
+ Voir la démo
91
+ </a>
92
+ </div>
93
+ </div>
94
+ </div>
95
+ </div>
96
+ </div>
97
+
98
+ <!-- Features Section -->
99
+ <div class="py-12 bg-white">
100
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
101
+ <div class="lg:text-center">
102
+ <h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Fonctionnalités</h2>
103
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
104
+ Une nouvelle façon de travailler en équipe
105
+ </p>
106
+ </div>
107
+
108
+ <div class="mt-10">
109
+ <div class="grid grid-cols-1 gap-10 sm:grid-cols-2 lg:grid-cols-4">
110
+ <!-- Feature 1 -->
111
+ <div class="relative" data-aos="fade-up" data-aos-delay="100">
112
+ <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
113
+ <i data-feather="calendar"></i>
114
+ </div>
115
+ <div class="ml-16">
116
+ <h3 class="text-lg font-medium text-gray-900">Planification intelligente</h3>
117
+ <p class="mt-2 text-base text-gray-500">
118
+ Calendrier interactif avec jalons visuels et rappels automatiques.
119
+ </p>
120
+ </div>
121
+ </div>
122
+
123
+ <!-- Feature 2 -->
124
+ <div class="relative" data-aos="fade-up" data-aos-delay="200">
125
+ <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
126
+ <i data-feather="trello"></i>
127
+ </div>
128
+ <div class="ml-16">
129
+ <h3 class="text-lg font-medium text-gray-900">Répartition des tâches</h3>
130
+ <p class="mt-2 text-base text-gray-500">
131
+ Attribution équitable avec notifications et suivi des contributions.
132
+ </p>
133
+ </div>
134
+ </div>
135
+
136
+ <!-- Feature 3 -->
137
+ <div class="relative" data-aos="fade-up" data-aos-delay="300">
138
+ <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
139
+ <i data-feather="bar-chart-2"></i>
140
+ </div>
141
+ <div class="ml-16">
142
+ <h3 class="text-lg font-medium text-gray-900">Suivi en temps réel</h3>
143
+ <p class="mt-2 text-base text-gray-500">
144
+ Graphiques dynamiques et timeline animée de l'avancement.
145
+ </p>
146
+ </div>
147
+ </div>
148
+
149
+ <!-- Feature 4 -->
150
+ <div class="relative" data-aos="fade-up" data-aos-delay="400">
151
+ <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
152
+ <i data-feather="award"></i>
153
+ </div>
154
+ <div class="ml-16">
155
+ <h3 class="text-lg font-medium text-gray-900">Évaluation collaborative</h3>
156
+ <p class="mt-2 text-base text-gray-500">
157
+ Système de notation équitable pour projets et contributions individuelles.
158
+ </p>
159
+ </div>
160
+ </div>
161
+ </div>
162
+ </div>
163
+ </div>
164
+ </div>
165
+
166
+ <!-- Project Showcase -->
167
+ <div class="bg-gray-50 py-12">
168
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
169
+ <div class="lg:text-center mb-12">
170
+ <h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Comment ça marche</h2>
171
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
172
+ Votre parcours projet en 4 étapes
173
+ </p>
174
+ </div>
175
+
176
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
177
+ <!-- Left Column - Animation -->
178
+ <div class="flex items-center justify-center" data-aos="fade-right">
179
+ <div class="relative w-full max-w-md">
180
+ <div class="animate-float">
181
+ <img src="https://cdn.dribbble.com/users/59947/screenshots/16555458/media/4c5a5e3b3c1c3d7a2d5b5b5b5b5b5b5b.png" alt="Project workflow" class="w-full h-auto rounded-lg shadow-xl">
182
+ </div>
183
+ </div>
184
+ </div>
185
+
186
+ <!-- Right Column - Steps -->
187
+ <div class="space-y-8">
188
+ <!-- Step 1 -->
189
+ <div class="flex" data-aos="fade-left" data-aos-delay="100">
190
+ <div class="flex-shrink-0">
191
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
192
+ <span class="text-xl font-bold">1</span>
193
+ </div>
194
+ </div>
195
+ <div class="ml-4">
196
+ <h3 class="text-lg font-medium text-gray-900">Planification</h3>
197
+ <p class="mt-2 text-base text-gray-500">
198
+ Définissez les objectifs, jalons et délais avec notre interface visuelle intuitive.
199
+ </p>
200
+ </div>
201
+ </div>
202
+
203
+ <!-- Step 2 -->
204
+ <div class="flex" data-aos="fade-left" data-aos-delay="200">
205
+ <div class="flex-shrink-0">
206
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
207
+ <span class="text-xl font-bold">2</span>
208
+ </div>
209
+ </div>
210
+ <div class="ml-4">
211
+ <h3 class="text-lg font-medium text-gray-900">Collaboration</h3>
212
+ <p class="mt-2 text-base text-gray-500">
213
+ Répartissez les tâches et collaborez en temps réel avec des outils intégrés.
214
+ </p>
215
+ </div>
216
+ </div>
217
+
218
+ <!-- Step 3 -->
219
+ <div class="flex" data-aos="fade-left" data-aos-delay="300">
220
+ <div class="flex-shrink-0">
221
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
222
+ <span class="text-xl font-bold">3</span>
223
+ </div>
224
+ </div>
225
+ <div class="ml-4">
226
+ <h3 class="text-lg font-medium text-gray-900">Suivi</h3>
227
+ <p class="mt-2 text-base text-gray-500">
228
+ Visualisez l'avancement avec des graphiques dynamiques et des notifications.
229
+ </p>
230
+ </div>
231
+ </div>
232
+
233
+ <!-- Step 4 -->
234
+ <div class="flex" data-aos="fade-left" data-aos-delay="400">
235
+ <div class="flex-shrink-0">
236
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
237
+ <span class="text-xl font-bold">4</span>
238
+ </div>
239
+ </div>
240
+ <div class="ml-4">
241
+ <h3 class="text-lg font-medium text-gray-900">Évaluation</h3>
242
+ <p class="mt-2 text-base text-gray-500">
243
+ Recevez et donnez des feedbacks avec notre système de notation équitable.
244
+ </p>
245
+ </div>
246
+ </div>
247
+ </div>
248
+ </div>
249
+ </div>
250
+ </div>
251
+
252
+ <!-- Testimonials -->
253
+ <div class="bg-white py-12">
254
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
255
+ <div class="lg:text-center mb-12">
256
+ <h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Témoignages</h2>
257
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
258
+ Ce que disent nos utilisateurs
259
+ </p>
260
+ </div>
261
+
262
+ <div class="grid grid-cols-1 gap-8 md:grid-cols-3">
263
+ <!-- Testimonial 1 -->
264
+ <div class="bg-gray-50 p-6 rounded-lg shadow-sm" data-aos="zoom-in" data-aos-delay="100">
265
+ <div class="flex items-center mb-4">
266
+ <div class="flex-shrink-0">
267
+ <img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/women/32.jpg" alt="">
268
+ </div>
269
+ <div class="ml-4">
270
+ <div class="font-medium text-gray-900">Sophie Martin</div>
271
+ <div class="text-indigo-600">Étudiante en Design</div>
272
+ </div>
273
+ </div>
274
+ <p class="text-gray-500">
275
+ "EduCollab a révolutionné notre façon de travailler en groupe. Les animations et le suivi visuel rendent le processus tellement plus engageant !"
276
+ </p>
277
+ </div>
278
+
279
+ <!-- Testimonial 2 -->
280
+ <div class="bg-gray-50 p-6 rounded-lg shadow-sm" data-aos="zoom-in" data-aos-delay="200">
281
+ <div class="flex items-center mb-4">
282
+ <div class="flex-shrink-0">
283
+ <img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/men/41.jpg" alt="">
284
+ </div>
285
+ <div class="ml-4">
286
+ <div class="font-medium text-gray-900">Thomas Leroy</div>
287
+ <div class="text-indigo-600">Professeur d'Informatique</div>
288
+ </div>
289
+ </div>
290
+ <p class="text-gray-500">
291
+ "En tant qu'enseignant, j'apprécie particulièrement le système de notation qui permet d'évaluer à la fois le travail d'équipe et les contributions individuelles."
292
+ </p>
293
+ </div>
294
+
295
+ <!-- Testimonial 3 -->
296
+ <div class="bg-gray-50 p-6 rounded-lg shadow-sm" data-aos="zoom-in" data-aos-delay="300">
297
+ <div class="flex items-center mb-4">
298
+ <div class="flex-shrink-0">
299
+ <img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="">
300
+ </div>
301
+ <div class="ml-4">
302
+ <div class="font-medium text-gray-900">Camille Dubois</div>
303
+ <div class="text-indigo-600">Étudiante en Ingénierie</div>
304
+ </div>
305
+ </div>
306
+ <p class="text-gray-500">
307
+ "La gestion des versions et l'espace de dépôt sécurisé nous ont sauvé la vie sur plusieurs projets complexes. Plus jamais de fichiers perdus !"
308
+ </p>
309
+ </div>
310
+ </div>
311
+ </div>
312
+ </div>
313
+
314
+ <!-- CTA Section -->
315
+ <div class="gradient-bg">
316
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between">
317
+ <h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl">
318
+ <span class="block">Prêt à transformer votre expérience de travail en groupe ?</span>
319
+ <span class="block text-indigo-200">Commencez gratuitement dès aujourd'hui.</span>
320
+ </h2>
321
+ <div class="mt-8 flex lg:mt-0 lg:flex-shrink-0">
322
+ <div class="inline-flex rounded-md shadow">
323
+ <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-gray-50">
324
+ Créer un compte
325
+ </a>
326
+ </div>
327
+ <div class="ml-3 inline-flex">
328
+ <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-500 bg-opacity-60 hover:bg-opacity-70">
329
+ En savoir plus
330
+ </a>
331
+ </div>
332
+ </div>
333
+ </div>
334
+ </div>
335
+
336
+ <!-- Footer -->
337
+ <footer class="bg-white">
338
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
339
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
340
+ <div>
341
+ <h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">EduCollab</h3>
342
+ <ul class="mt-4 space-y-4">
343
+ <li><a href="#" class="text-base text-gray-500 hover:text-indigo-600">À propos</a></li>
344
+ <li><a href="#" class="text-base text-gray-500 hover:text-indigo-600">Carrières</a></li>
345
+ <li><a href="#" class="text-base text-gray-500 hover:text-indigo-600">Blog</a></li>
346
+ </ul>
347
+ </div>
348
+ <div>
349
+ <h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">Ressources</h3>
350
+ <ul class="mt-4 space-y-4">
351
+ <li><a href="#" class="text-base text-gray-500 hover:text-indigo-600">Documentation</a></li>
352
+ <li><a href="#" class="text-base text-gray-500 hover:text-indigo-600">Guides</a></li>
353
+ <li><a href="#" class="text-base text-gray-500 hover:text-indigo-600">API</a></li>
354
+ </ul>
355
+ </div>
356
+ <div>
357
+ <h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">Support</h3>
358
+ <ul class="mt-4 space-y-4">
359
+ <li><a href="#" class="text-base text-gray-500 hover:text-indigo-600">Centre d'aide</a></li>
360
+ <li><a href="#" class="text-base text-gray-500 hover:text-indigo-600">Sécurité</a></li>
361
+ <li><a href="#" class="text-base text-gray-500 hover:text-indigo-600">Contact</a></li>
362
+ </ul>
363
+ </div>
364
+ <div>
365
+ <h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">Legal</h3>
366
+ <ul class="mt-4 space-y-4">
367
+ <li><a href="#" class="text-base text-gray-500 hover:text-indigo-600">Confidentialité</a></li>
368
+ <li><a href="#" class="text-base text-gray-500 hover:text-indigo-600">Conditions</a></li>
369
+ <li><a href="#" class="text-base text-gray-500 hover:text-indigo-600">Licences</a></li>
370
+ </ul>
371
+ </div>
372
+ </div>
373
+ <div class="mt-12 border-t border-gray-200 pt-8">
374
+ <p class="text-base text-gray-400 text-center">
375
+ &copy; 2023 EduCollab. Tous droits réservés.
376
+ </p>
377
+ </div>
378
+ </div>
379
+ </footer>
380
+
381
+ <script>
382
+ AOS.init({
383
+ duration: 800,
384
+ easing: 'ease-in-out',
385
+ once: true
386
+ });
387
+ feather.replace();
388
+
389
+ // Floating animation for hero section elements
390
+ anime({
391
+ targets: '.gradient-bg h1, .gradient-bg p',
392
+ translateY: [20, 0],
393
+ opacity: [0, 1],
394
+ duration: 1500,
395
+ easing: 'easeOutExpo',
396
+ delay: anime.stagger(100)
397
+ });
398
+ </script>
399
+ </body>
400
  </html>
projets.html ADDED
@@ -0,0 +1,231 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Mes Projets - EduCollab</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
9
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ <style>
14
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
15
+ body {
16
+ font-family: 'Inter', sans-serif;
17
+ background-color: #f8fafc;
18
+ }
19
+ .gradient-bg {
20
+ background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
21
+ }
22
+ .project-card:hover {
23
+ transform: translateY(-5px);
24
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
25
+ }
26
+ .progress-ring {
27
+ transform: rotate(-90deg);
28
+ }
29
+ .progress-ring__circle {
30
+ transition: stroke-dashoffset 0.5s;
31
+ transform-origin: 50% 50%;
32
+ }
33
+ .animate-fade-in {
34
+ animation: fadeIn 0.6s ease-in-out;
35
+ }
36
+ @keyframes fadeIn {
37
+ from { opacity: 0; transform: translateY(20px); }
38
+ to { opacity: 1; transform: translateY(0); }
39
+ }
40
+ </style>
41
+ </head>
42
+ <body class="text-gray-800">
43
+ <!-- Navigation -->
44
+ <nav class="bg-white shadow-sm">
45
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
46
+ <div class="flex justify-between h-16">
47
+ <div class="flex items-center">
48
+ <a href="index.html" class="flex-shrink-0 flex items-center">
49
+ <i data-feather="users" class="text-indigo-600"></i>
50
+ <span class="ml-2 text-xl font-bold text-indigo-600">EduCollab</span>
51
+ </a>
52
+ </div>
53
+ <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
54
+ <a href="index.html" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Accueil</a>
55
+ <a href="projets.html" class="text-indigo-600 px-3 py-2 text-sm font-medium">Projets</a>
56
+ <a href="calendrier.html" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Calendrier</a>
57
+ <a href="evaluation.html" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Évaluation</a>
58
+ </div>
59
+ <div class="flex items-center">
60
+ <button class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-700">
61
+ Mon compte
62
+ </button>
63
+ </div>
64
+ </div>
65
+ </div>
66
+ </nav>
67
+
68
+ <!-- Header -->
69
+ <div class="bg-white shadow">
70
+ <div class="max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8">
71
+ <div class="flex justify-between items-center">
72
+ <h1 class="text-2xl font-bold text-gray-900">Mes projets collaboratifs</h1>
73
+ <button class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-700 flex items-center">
74
+ <i data-feather="plus" class="w-4 h-4 mr-2"></i>
75
+ Nouveau projet
76
+ </button>
77
+ </div>
78
+ </div>
79
+ </div>
80
+
81
+ <!-- Main Content -->
82
+ <div class="max-w-7xl mx-auto py-6 sm:px-6 lg:px-8">
83
+ <div class="px-4 py-6 sm:px-0">
84
+ <!-- Filter Bar -->
85
+ <div class="flex flex-wrap items-center justify-between mb-8">
86
+ <div class="flex space-x-2 mb-4 sm:mb-0">
87
+ <button class="px-4 py-2 bg-indigo-600 text-white rounded-md text-sm font-medium">Tous</button>
88
+ <button class="px-4 py-2 bg-white text-gray-700 rounded-md text-sm font-medium border border-gray-300">En cours</button>
89
+ <button class="px-4 py-2 bg-white text-gray-700 rounded-md text-sm font-medium border border-gray-300">Terminés</button>
90
+ </div>
91
+ <div class="relative">
92
+ <input type="text" placeholder="Rechercher un projet..." class="pl-10 pr-4 py-2 border border-gray-300 rounded-md focus:ring-indigo-500 focus:border-indigo-500">
93
+ <i data-feather="search" class="absolute left-3 top-2.5 text-gray-400 w-5 h-5"></i>
94
+ </div>
95
+ </div>
96
+
97
+ <!-- Projects Grid -->
98
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
99
+ <!-- Project Card 1 -->
100
+ <div class="bg-white rounded-lg shadow-sm border border-gray-200 project-card transition-all duration-300 animate-fade-in">
101
+ <div class="p-6">
102
+ <div class="flex justify-between items-start mb-4">
103
+ <h3 class="text-lg font-semibold text-gray-900">Projet IA & Machine Learning</h3>
104
+ <span class="px-2 py-1 bg-green-100 text-green-800 text-xs font-medium rounded-full">En cours</span>
105
+ </div>
106
+ <p class="text-gray-500 text-sm mb-4">Développement d'un système de recommandation intelligent pour plateforme éducative.</p>
107
+
108
+ <div class="flex items-center mb-4">
109
+ <div class="flex -space-x-2">
110
+ <img class="w-8 h-8 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/32.jpg" alt="">
111
+ <img class="w-8 h-8 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/men/41.jpg" alt="">
112
+ <img class="w-8 h-8 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/68.jpg" alt="">
113
+ <div class="w-8 h-8 rounded-full border-2 border-white bg-indigo-100 flex items-center justify-center text-indigo-600 text-xs font-medium">+2</div>
114
+ </div>
115
+ </div>
116
+
117
+ <div class="mb-4">
118
+ <div class="flex justify-between text-sm text-gray-500 mb-1">
119
+ <span>Progression</span>
120
+ <span>65%</span>
121
+ </div>
122
+ <div class="w-full bg-gray-200 rounded-full h-2">
123
+ <div class="bg-indigo-600 h-2 rounded-full" style="width: 65%"></div>
124
+ </div>
125
+ </div>
126
+
127
+ <div class="flex justify-between items-center text-sm text-gray-500">
128
+ <div class="flex items-center">
129
+ <i data-feather="calendar" class="w-4 h-4 mr-1"></i>
130
+ <span>12 jours restants</span>
131
+ </div>
132
+ <a href="#" class="text-indigo-600 hover:text-indigo-800 flex items-center">
133
+ Voir détails
134
+ <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
135
+ </a>
136
+ </div>
137
+ </div>
138
+ </div>
139
+
140
+ <!-- Project Card 2 -->
141
+ <div class="bg-white rounded-lg shadow-sm border border-gray-200 project-card transition-all duration-300 animate-fade-in">
142
+ <div class="p-6">
143
+ <div class="flex justify-between items-start mb-4">
144
+ <h3 class="text-lg font-semibold text-gray-900">Application Mobile Éducative</h3>
145
+ <span class="px-2 py-1 bg-blue-100 text-blue-800 text-xs font-medium rounded-full">En attente</span>
146
+ </div>
147
+ <p class="text-gray-500 text-sm mb-4">Création d'une application mobile pour l'apprentissage des langues étrangères.</p>
148
+
149
+ <div class="flex items-center mb-4">
150
+ <div class="flex -space-x-2">
151
+ <img class="w-8 h-8 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/men/22.jpg" alt="">
152
+ <img class="w-8 h-8 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/45.jpg" alt="">
153
+ </div>
154
+ </div>
155
+
156
+ <div class="mb-4">
157
+ <div class="flex justify-between text-sm text-gray-500 mb-1">
158
+ <span>Progression</span>
159
+ <span>30%</span>
160
+ </div>
161
+ <div class="w-full bg-gray-200 rounded-full h-2">
162
+ <div class="bg-indigo-600 h-2 rounded-full" style="width: 30%"></div>
163
+ </div>
164
+ </div>
165
+
166
+ <div class="flex justify-between items-center text-sm text-gray-500">
167
+ <div class="flex items-center">
168
+ <i data-feather="calendar" class="w-4 h-4 mr-1"></i>
169
+ <span>25 jours restants</span>
170
+ </div>
171
+ <a href="#" class="text-indigo-600 hover:text-indigo-800 flex items-center">
172
+ Voir détails
173
+ <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
174
+ </a>
175
+ </div>
176
+ </div>
177
+ </div>
178
+
179
+ <!-- Project Card 3 -->
180
+ <div class="bg-white rounded-lg shadow-sm border border-gray-200 project-card transition-all duration-300 animate-fade-in">
181
+ <div class="p-6">
182
+ <div class="flex justify-between items-start mb-4">
183
+ <h3 class="text-lg font-semibold text-gray-900">Analyse de Données Éducatives</h3>
184
+ <span class="px-2 py-1 bg-purple-100 text-purple-800 text-xs font-medium rounded-full">Terminé</span>
185
+ </div>
186
+ <p class="text-gray-500 text-sm mb-4">Étude des performances académiques et prédiction des résultats étudiants.</p>
187
+
188
+ <div class="flex items-center mb-4">
189
+ <div class="flex -space-x-2">
190
+ <img class="w-8 h-8 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/32.jpg" alt="">
191
+ <img class="w-8 h-8 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/men/41.jpg" alt="">
192
+ <img class="w-8 h-8 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/68.jpg" alt="">
193
+ </div>
194
+ </div>
195
+
196
+ <div class="mb-4">
197
+ <div class="flex justify-between text-sm text-gray-500 mb-1">
198
+ <span>Progression</span>
199
+ <span>100%</span>
200
+ </div>
201
+ <div class="w-full bg-gray-200 rounded-full h-2">
202
+ <div class="bg-green-500 h-2 rounded-full" style="width: 100%"></div>
203
+ </div>
204
+ </div>
205
+
206
+ <div class="flex justify-between items-center text-sm text-gray-500">
207
+ <div class="flex items-center">
208
+ <i data-feather="check-circle" class="w-4 h-4 mr-1 text-green-500"></i>
209
+ <span>Terminé</span>
210
+ </div>
211
+ <a href="#" class="text-indigo-600 hover:text-indigo-800 flex items-center">
212
+ Voir détails
213
+ <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
214
+ </a>
215
+ </div>
216
+ </div>
217
+ </div>
218
+ </div>
219
+ </div>
220
+ </div>
221
+
222
+ <script>
223
+ AOS.init({
224
+ duration: 800,
225
+ easing: 'ease-in-out',
226
+ once: true
227
+ });
228
+ feather.replace();
229
+ </script>
230
+ </body>
231
+ </html>