jerome-dreville commited on
Commit
ccecf49
·
verified ·
1 Parent(s): 2fbf413

Créer moi une page avec des liens utiles - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +301 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Arcs Liens
3
- emoji: 🦀
4
- colorFrom: gray
5
- colorTo: yellow
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: arcs-liens
3
+ emoji: 🐳
4
+ colorFrom: yellow
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,301 @@
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>Liens Utiles</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
+ .card-hover:hover {
11
+ transform: translateY(-5px);
12
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
13
+ }
14
+ .category-title {
15
+ position: relative;
16
+ display: inline-block;
17
+ }
18
+ .category-title::after {
19
+ content: '';
20
+ position: absolute;
21
+ bottom: -5px;
22
+ left: 0;
23
+ width: 100%;
24
+ height: 3px;
25
+ background: linear-gradient(90deg, #3b82f6, #8b5cf6);
26
+ border-radius: 3px;
27
+ }
28
+ </style>
29
+ </head>
30
+ <body class="bg-gray-50 font-sans">
31
+ <header class="bg-gradient-to-r from-blue-600 to-purple-600 text-white py-8 shadow-lg">
32
+ <div class="container mx-auto px-4">
33
+ <div class="flex flex-col md:flex-row justify-between items-center">
34
+ <div class="mb-6 md:mb-0">
35
+ <h1 class="text-3xl md:text-4xl font-bold">Liens Utiles</h1>
36
+ <p class="mt-2 text-blue-100">Toutes vos ressources en un seul endroit</p>
37
+ </div>
38
+ <div class="relative w-full md:w-64">
39
+ <input type="text" placeholder="Rechercher un lien..."
40
+ class="w-full py-2 px-4 rounded-full text-gray-800 focus:outline-none focus:ring-2 focus:ring-blue-400">
41
+ <button class="absolute right-3 top-2 text-gray-500">
42
+ <i class="fas fa-search"></i>
43
+ </button>
44
+ </div>
45
+ </div>
46
+ </div>
47
+ </header>
48
+
49
+ <main class="container mx-auto px-4 py-8">
50
+ <section class="mb-12">
51
+ <h2 class="text-2xl font-bold mb-6 text-gray-800 category-title">Réseaux Sociaux</h2>
52
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
53
+ <a href="https://facebook.com" target="_blank"
54
+ class="bg-white rounded-lg shadow-md p-6 flex flex-col items-center transition-all duration-300 card-hover">
55
+ <div class="bg-blue-100 p-4 rounded-full mb-4">
56
+ <i class="fab fa-facebook text-blue-600 text-3xl"></i>
57
+ </div>
58
+ <h3 class="text-lg font-semibold text-gray-800">Facebook</h3>
59
+ <p class="text-gray-500 text-center mt-2">Réseau social pour rester connecté</p>
60
+ </a>
61
+
62
+ <a href="https://twitter.com" target="_blank"
63
+ class="bg-white rounded-lg shadow-md p-6 flex flex-col items-center transition-all duration-300 card-hover">
64
+ <div class="bg-blue-100 p-4 rounded-full mb-4">
65
+ <i class="fab fa-twitter text-blue-400 text-3xl"></i>
66
+ </div>
67
+ <h3 class="text-lg font-semibold text-gray-800">Twitter</h3>
68
+ <p class="text-gray-500 text-center mt-2">Actualités et discussions en temps réel</p>
69
+ </a>
70
+
71
+ <a href="https://linkedin.com" target="_blank"
72
+ class="bg-white rounded-lg shadow-md p-6 flex flex-col items-center transition-all duration-300 card-hover">
73
+ <div class="bg-blue-100 p-4 rounded-full mb-4">
74
+ <i class="fab fa-linkedin text-blue-700 text-3xl"></i>
75
+ </div>
76
+ <h3 class="text-lg font-semibold text-gray-800">LinkedIn</h3>
77
+ <p class="text-gray-500 text-center mt-2">Réseau professionnel</p>
78
+ </a>
79
+
80
+ <a href="https://instagram.com" target="_blank"
81
+ class="bg-white rounded-lg shadow-md p-6 flex flex-col items-center transition-all duration-300 card-hover">
82
+ <div class="bg-pink-100 p-4 rounded-full mb-4">
83
+ <i class="fab fa-instagram text-pink-600 text-3xl"></i>
84
+ </div>
85
+ <h3 class="text-lg font-semibold text-gray-800">Instagram</h3>
86
+ <p class="text-gray-500 text-center mt-2">Partage de photos et vidéos</p>
87
+ </a>
88
+ </div>
89
+ </section>
90
+
91
+ <section class="mb-12">
92
+ <h2 class="text-2xl font-bold mb-6 text-gray-800 category-title">Outils de Productivité</h2>
93
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
94
+ <a href="https://drive.google.com" target="_blank"
95
+ class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover">
96
+ <div class="bg-green-100 p-3 rounded-lg mr-4">
97
+ <i class="fab fa-google-drive text-green-600 text-2xl"></i>
98
+ </div>
99
+ <div>
100
+ <h3 class="text-lg font-semibold text-gray-800">Google Drive</h3>
101
+ <p class="text-gray-500 mt-1">Stockage et partage de fichiers</p>
102
+ </div>
103
+ </a>
104
+
105
+ <a href="https://trello.com" target="_blank"
106
+ class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover">
107
+ <div class="bg-blue-100 p-3 rounded-lg mr-4">
108
+ <i class="fab fa-trello text-blue-600 text-2xl"></i>
109
+ </div>
110
+ <div>
111
+ <h3 class="text-lg font-semibold text-gray-800">Trello</h3>
112
+ <p class="text-gray-500 mt-1">Gestion de projets en équipe</p>
113
+ </div>
114
+ </a>
115
+
116
+ <a href="https://slack.com" target="_blank"
117
+ class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover">
118
+ <div class="bg-purple-100 p-3 rounded-lg mr-4">
119
+ <i class="fab fa-slack text-purple-600 text-2xl"></i>
120
+ </div>
121
+ <div>
122
+ <h3 class="text-lg font-semibold text-gray-800">Slack</h3>
123
+ <p class="text-gray-500 mt-1">Communication d'équipe</p>
124
+ </div>
125
+ </a>
126
+
127
+ <a href="https://notion.so" target="_blank"
128
+ class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover">
129
+ <div class="bg-gray-100 p-3 rounded-lg mr-4">
130
+ <i class="fas fa-file-alt text-gray-700 text-2xl"></i>
131
+ </div>
132
+ <div>
133
+ <h3 class="text-lg font-semibold text-gray-800">Notion</h3>
134
+ <p class="text-gray-500 mt-1">Espace de travail tout-en-un</p>
135
+ </div>
136
+ </a>
137
+
138
+ <a href="https://zoom.us" target="_blank"
139
+ class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover">
140
+ <div class="bg-blue-100 p-3 rounded-lg mr-4">
141
+ <i class="fas fa-video text-blue-600 text-2xl"></i>
142
+ </div>
143
+ <div>
144
+ <h3 class="text-lg font-semibold text-gray-800">Zoom</h3>
145
+ <p class="text-gray-500 mt-1">Visioconférence et réunions</p>
146
+ </div>
147
+ </a>
148
+
149
+ <a href="https://calendar.google.com" target="_blank"
150
+ class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover">
151
+ <div class="bg-red-100 p-3 rounded-lg mr-4">
152
+ <i class="fas fa-calendar-alt text-red-600 text-2xl"></i>
153
+ </div>
154
+ <div>
155
+ <h3 class="text-lg font-semibold text-gray-800">Google Agenda</h3>
156
+ <p class="text-gray-500 mt-1">Gestion du temps et rendez-vous</p>
157
+ </div>
158
+ </a>
159
+ </div>
160
+ </section>
161
+
162
+ <section class="mb-12">
163
+ <h2 class="text-2xl font-bold mb-6 text-gray-800 category-title">Développement</h2>
164
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
165
+ <a href="https://github.com" target="_blank"
166
+ class="bg-white rounded-lg shadow-md p-6 flex flex-col items-center transition-all duration-300 card-hover">
167
+ <div class="bg-gray-800 p-4 rounded-full mb-4">
168
+ <i class="fab fa-github text-white text-3xl"></i>
169
+ </div>
170
+ <h3 class="text-lg font-semibold text-gray-800">GitHub</h3>
171
+ <p class="text-gray-500 text-center mt-2">Plateforme de développement collaboratif</p>
172
+ </a>
173
+
174
+ <a href="https://stackoverflow.com" target="_blank"
175
+ class="bg-white rounded-lg shadow-md p-6 flex flex-col items-center transition-all duration-300 card-hover">
176
+ <div class="bg-orange-100 p-4 rounded-full mb-4">
177
+ <i class="fab fa-stack-overflow text-orange-500 text-3xl"></i>
178
+ </div>
179
+ <h3 class="text-lg font-semibold text-gray-800">Stack Overflow</h3>
180
+ <p class="text-gray-500 text-center mt-2">Questions et réponses pour développeurs</p>
181
+ </a>
182
+
183
+ <a href="https://codepen.io" target="_blank"
184
+ class="bg-white rounded-lg shadow-md p-6 flex flex-col items-center transition-all duration-300 card-hover">
185
+ <div class="bg-black p-4 rounded-full mb-4">
186
+ <i class="fab fa-codepen text-white text-3xl"></i>
187
+ </div>
188
+ <h3 class="text-lg font-semibold text-gray-800">CodePen</h3>
189
+ <p class="text-gray-500 text-center mt-2">Environnement de développement front-end</p>
190
+ </a>
191
+
192
+ <a href="https://dev.to" target="_blank"
193
+ class="bg-white rounded-lg shadow-md p-6 flex flex-col items-center transition-all duration-300 card-hover">
194
+ <div class="bg-gray-100 p-4 rounded-full mb-4">
195
+ <i class="fas fa-laptop-code text-gray-800 text-3xl"></i>
196
+ </div>
197
+ <h3 class="text-lg font-semibold text-gray-800">DEV Community</h3>
198
+ <p class="text-gray-500 text-center mt-2">Partage de connaissances entre développeurs</p>
199
+ </a>
200
+ </div>
201
+ </section>
202
+
203
+ <section class="mb-12">
204
+ <h2 class="text-2xl font-bold mb-6 text-gray-800 category-title">Apprentissage</h2>
205
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
206
+ <a href="https://coursera.org" target="_blank"
207
+ class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover">
208
+ <div class="bg-blue-100 p-3 rounded-lg mr-4">
209
+ <i class="fas fa-graduation-cap text-blue-700 text-2xl"></i>
210
+ </div>
211
+ <div>
212
+ <h3 class="text-lg font-semibold text-gray-800">Coursera</h3>
213
+ <p class="text-gray-500 mt-1">Cours en ligne de grandes universités</p>
214
+ </div>
215
+ </a>
216
+
217
+ <a href="https://udemy.com" target="_blank"
218
+ class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover">
219
+ <div class="bg-purple-100 p-3 rounded-lg mr-4">
220
+ <i class="fas fa-chalkboard-teacher text-purple-700 text-2xl"></i>
221
+ </div>
222
+ <div>
223
+ <h3 class="text-lg font-semibold text-gray-800">Udemy</h3>
224
+ <p class="text-gray-500 mt-1">Cours sur divers sujets</p>
225
+ </div>
226
+ </a>
227
+
228
+ <a href="https://khanacademy.org" target="_blank"
229
+ class="bg-white rounded-lg shadow-md p-6 flex items-start transition-all duration-300 card-hover">
230
+ <div class="bg-teal-100 p-3 rounded-lg mr-4">
231
+ <i class="fas fa-atom text-teal-600 text-2xl"></i>
232
+ </div>
233
+ <div>
234
+ <h3 class="text-lg font-semibold text-gray-800">Khan Academy</h3>
235
+ <p class="text-gray-500 mt-1">Apprentissage gratuit pour tous</p>
236
+ </div>
237
+ </a>
238
+ </div>
239
+ </section>
240
+ </main>
241
+
242
+ <footer class="bg-gray-800 text-white py-8">
243
+ <div class="container mx-auto px-4">
244
+ <div class="flex flex-col md:flex-row justify-between items-center">
245
+ <div class="mb-6 md:mb-0">
246
+ <h2 class="text-xl font-bold mb-2">Liens Utiles</h2>
247
+ <p class="text-gray-400">Toutes vos ressources en un seul endroit</p>
248
+ </div>
249
+ <div class="flex space-x-6">
250
+ <a href="#" class="text-gray-400 hover:text-white transition-colors">
251
+ <i class="fab fa-twitter text-xl"></i>
252
+ </a>
253
+ <a href="#" class="text-gray-400 hover:text-white transition-colors">
254
+ <i class="fab fa-facebook text-xl"></i>
255
+ </a>
256
+ <a href="#" class="text-gray-400 hover:text-white transition-colors">
257
+ <i class="fab fa-instagram text-xl"></i>
258
+ </a>
259
+ <a href="#" class="text-gray-400 hover:text-white transition-colors">
260
+ <i class="fab fa-github text-xl"></i>
261
+ </a>
262
+ </div>
263
+ </div>
264
+ <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
265
+ <p>&copy; 2023 Liens Utiles. Tous droits réservés.</p>
266
+ </div>
267
+ </div>
268
+ </footer>
269
+
270
+ <script>
271
+ // Animation au chargement de la page
272
+ document.addEventListener('DOMContentLoaded', () => {
273
+ const cards = document.querySelectorAll('.card-hover');
274
+ cards.forEach((card, index) => {
275
+ setTimeout(() => {
276
+ card.style.opacity = '1';
277
+ card.style.transform = 'translateY(0)';
278
+ }, 100 * index);
279
+ });
280
+ });
281
+
282
+ // Fonction de recherche
283
+ const searchInput = document.querySelector('input');
284
+ searchInput.addEventListener('input', (e) => {
285
+ const searchTerm = e.target.value.toLowerCase();
286
+ const cards = document.querySelectorAll('.card-hover');
287
+
288
+ cards.forEach(card => {
289
+ const title = card.querySelector('h3').textContent.toLowerCase();
290
+ const description = card.querySelector('p').textContent.toLowerCase();
291
+
292
+ if (title.includes(searchTerm) || description.includes(searchTerm)) {
293
+ card.style.display = 'flex';
294
+ } else {
295
+ card.style.display = 'none';
296
+ }
297
+ });
298
+ });
299
+ </script>
300
+ <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=jerome-dreville/arcs-liens" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
301
+ </html>