Spaces:
Running
Running
Fait moi des cartes modernes pour présenter des personnes - Initial Deployment
Browse files- README.md +7 -5
- index.html +215 -19
README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
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-team
|
3 |
+
emoji: 🐳
|
4 |
+
colorFrom: purple
|
5 |
+
colorTo: yellow
|
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,215 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>Cartes de présentation modernes</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-effect {
|
11 |
+
transition: all 0.3s ease;
|
12 |
+
}
|
13 |
+
.card-hover-effect:hover {
|
14 |
+
transform: translateY(-10px);
|
15 |
+
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
16 |
+
}
|
17 |
+
.social-icon {
|
18 |
+
transition: all 0.2s ease;
|
19 |
+
}
|
20 |
+
.social-icon:hover {
|
21 |
+
transform: scale(1.2);
|
22 |
+
}
|
23 |
+
</style>
|
24 |
+
</head>
|
25 |
+
<body class="bg-gray-100 min-h-screen py-12 px-4 sm:px-6 lg:px-8">
|
26 |
+
<div class="max-w-7xl mx-auto">
|
27 |
+
<h1 class="text-4xl font-bold text-center text-gray-800 mb-2">Notre Équipe</h1>
|
28 |
+
<p class="text-lg text-center text-gray-600 mb-12">Découvrez les talents qui font la différence</p>
|
29 |
+
|
30 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
31 |
+
<!-- Carte 1 -->
|
32 |
+
<div class="bg-white rounded-xl overflow-hidden shadow-lg card-hover-effect">
|
33 |
+
<div class="relative">
|
34 |
+
<img class="w-full h-64 object-cover" src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&auto=format&fit=crop&w=634&q=80" alt="Sophie Martin">
|
35 |
+
<div class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent"></div>
|
36 |
+
<div class="absolute bottom-4 left-4">
|
37 |
+
<span class="bg-blue-500 text-white text-xs font-semibold px-3 py-1 rounded-full">Développeuse</span>
|
38 |
+
</div>
|
39 |
+
</div>
|
40 |
+
<div class="p-6">
|
41 |
+
<div class="flex justify-between items-start">
|
42 |
+
<div>
|
43 |
+
<h3 class="text-xl font-bold text-gray-800">Sophie Martin</h3>
|
44 |
+
<p class="text-blue-500">Lead Développeuse Frontend</p>
|
45 |
+
</div>
|
46 |
+
<button class="text-gray-400 hover:text-blue-500 focus:outline-none favorite-btn" onclick="toggleFavorite(this)">
|
47 |
+
<i class="far fa-heart text-xl"></i>
|
48 |
+
</button>
|
49 |
+
</div>
|
50 |
+
<p class="mt-3 text-gray-600">Spécialiste en React et Vue.js avec 8 ans d'expérience dans la création d'interfaces utilisateur intuitives.</p>
|
51 |
+
<div class="mt-6 flex space-x-4">
|
52 |
+
<a href="#" class="text-blue-500 social-icon"><i class="fab fa-linkedin-in text-lg"></i></a>
|
53 |
+
<a href="#" class="text-blue-400 social-icon"><i class="fab fa-twitter text-lg"></i></a>
|
54 |
+
<a href="#" class="text-gray-700 social-icon"><i class="fab fa-github text-lg"></i></a>
|
55 |
+
</div>
|
56 |
+
</div>
|
57 |
+
</div>
|
58 |
+
|
59 |
+
<!-- Carte 2 -->
|
60 |
+
<div class="bg-white rounded-xl overflow-hidden shadow-lg card-hover-effect">
|
61 |
+
<div class="relative">
|
62 |
+
<img class="w-full h-64 object-cover" src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-1.2.1&auto=format&fit=crop&w=634&q=80" alt="Thomas Leroy">
|
63 |
+
<div class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent"></div>
|
64 |
+
<div class="absolute bottom-4 left-4">
|
65 |
+
<span class="bg-green-500 text-white text-xs font-semibold px-3 py-1 rounded-full">Design</span>
|
66 |
+
</div>
|
67 |
+
</div>
|
68 |
+
<div class="p-6">
|
69 |
+
<div class="flex justify-between items-start">
|
70 |
+
<div>
|
71 |
+
<h3 class="text-xl font-bold text-gray-800">Thomas Leroy</h3>
|
72 |
+
<p class="text-green-500">Directeur Artistique</p>
|
73 |
+
</div>
|
74 |
+
<button class="text-gray-400 hover:text-red-500 focus:outline-none favorite-btn" onclick="toggleFavorite(this)">
|
75 |
+
<i class="far fa-heart text-xl"></i>
|
76 |
+
</button>
|
77 |
+
</div>
|
78 |
+
<p class="mt-3 text-gray-600">Passionné par l'UX/UI design avec une approche centrée sur l'utilisateur. Expert en design systems et prototypage.</p>
|
79 |
+
<div class="mt-6 flex space-x-4">
|
80 |
+
<a href="#" class="text-blue-500 social-icon"><i class="fab fa-linkedin-in text-lg"></i></a>
|
81 |
+
<a href="#" class="text-pink-500 social-icon"><i class="fab fa-dribbble text-lg"></i></a>
|
82 |
+
<a href="#" class="text-orange-500 social-icon"><i class="fab fa-behance text-lg"></i></a>
|
83 |
+
</div>
|
84 |
+
</div>
|
85 |
+
</div>
|
86 |
+
|
87 |
+
<!-- Carte 3 -->
|
88 |
+
<div class="bg-white rounded-xl overflow-hidden shadow-lg card-hover-effect">
|
89 |
+
<div class="relative">
|
90 |
+
<img class="w-full h-64 object-cover" src="https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?ixlib=rb-1.2.1&auto=format&fit=crop&w=634&q=80" alt="Julie Dupont">
|
91 |
+
<div class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent"></div>
|
92 |
+
<div class="absolute bottom-4 left-4">
|
93 |
+
<span class="bg-purple-500 text-white text-xs font-semibold px-3 py-1 rounded-full">Marketing</span>
|
94 |
+
</div>
|
95 |
+
</div>
|
96 |
+
<div class="p-6">
|
97 |
+
<div class="flex justify-between items-start">
|
98 |
+
<div>
|
99 |
+
<h3 class="text-xl font-bold text-gray-800">Julie Dupont</h3>
|
100 |
+
<p class="text-purple-500">Responsable Marketing Digital</p>
|
101 |
+
</div>
|
102 |
+
<button class="text-gray-400 hover:text-red-500 focus:outline-none favorite-btn" onclick="toggleFavorite(this)">
|
103 |
+
<i class="far fa-heart text-xl"></i>
|
104 |
+
</button>
|
105 |
+
</div>
|
106 |
+
<p class="mt-3 text-gray-600">Stratège en marketing digital avec une expertise en growth hacking et analyse de données pour maximiser le ROI.</p>
|
107 |
+
<div class="mt-6 flex space-x-4">
|
108 |
+
<a href="#" class="text-blue-500 social-icon"><i class="fab fa-linkedin-in text-lg"></i></a>
|
109 |
+
<a href="#" class="text-blue-400 social-icon"><i class="fab fa-twitter text-lg"></i></a>
|
110 |
+
<a href="#" class="text-red-500 social-icon"><i class="fab fa-youtube text-lg"></i></a>
|
111 |
+
</div>
|
112 |
+
</div>
|
113 |
+
</div>
|
114 |
+
|
115 |
+
<!-- Carte 4 -->
|
116 |
+
<div class="bg-white rounded-xl overflow-hidden shadow-lg card-hover-effect">
|
117 |
+
<div class="relative">
|
118 |
+
<img class="w-full h-64 object-cover" src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-1.2.1&auto=format&fit=crop&w=634&q=80" alt="Alexandre Moreau">
|
119 |
+
<div class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent"></div>
|
120 |
+
<div class="absolute bottom-4 left-4">
|
121 |
+
<span class="bg-yellow-500 text-white text-xs font-semibold px-3 py-1 rounded-full">Backend</span>
|
122 |
+
</div>
|
123 |
+
</div>
|
124 |
+
<div class="p-6">
|
125 |
+
<div class="flex justify-between items-start">
|
126 |
+
<div>
|
127 |
+
<h3 class="text-xl font-bold text-gray-800">Alexandre Moreau</h3>
|
128 |
+
<p class="text-yellow-500">Architecte Logiciel</p>
|
129 |
+
</div>
|
130 |
+
<button class="text-gray-400 hover:text-red-500 focus:outline-none favorite-btn" onclick="toggleFavorite(this)">
|
131 |
+
<i class="far fa-heart text-xl"></i>
|
132 |
+
</button>
|
133 |
+
</div>
|
134 |
+
<p class="mt-3 text-gray-600">Expert en architecture microservices et bases de données distribuées. Passionné par les solutions scalables et performantes.</p>
|
135 |
+
<div class="mt-6 flex space-x-4">
|
136 |
+
<a href="#" class="text-blue-500 social-icon"><i class="fab fa-linkedin-in text-lg"></i></a>
|
137 |
+
<a href="#" class="text-gray-700 social-icon"><i class="fab fa-github text-lg"></i></a>
|
138 |
+
<a href="#" class="text-red-500 social-icon"><i class="fab fa-stack-overflow text-lg"></i></a>
|
139 |
+
</div>
|
140 |
+
</div>
|
141 |
+
</div>
|
142 |
+
|
143 |
+
<!-- Carte 5 -->
|
144 |
+
<div class="bg-white rounded-xl overflow-hidden shadow-lg card-hover-effect">
|
145 |
+
<div class="relative">
|
146 |
+
<img class="w-full h-64 object-cover" src="https://images.unsplash.com/photo-1488426862026-3ee34a7d66df?ixlib=rb-1.2.1&auto=format&fit=crop&w=634&q=80" alt="Camille Petit">
|
147 |
+
<div class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent"></div>
|
148 |
+
<div class="absolute bottom-4 left-4">
|
149 |
+
<span class="bg-red-500 text-white text-xs font-semibold px-3 py-1 rounded-full">RH</span>
|
150 |
+
</div>
|
151 |
+
</div>
|
152 |
+
<div class="p-6">
|
153 |
+
<div class="flex justify-between items-start">
|
154 |
+
<div>
|
155 |
+
<h3 class="text-xl font-bold text-gray-800">Camille Petit</h3>
|
156 |
+
<p class="text-red-500">Responsable des Ressources Humaines</p>
|
157 |
+
</div>
|
158 |
+
<button class="text-gray-400 hover:text-red-500 focus:outline-none favorite-btn" onclick="toggleFavorite(this)">
|
159 |
+
<i class="far fa-heart text-xl"></i>
|
160 |
+
</button>
|
161 |
+
</div>
|
162 |
+
<p class="mt-3 text-gray-600">Développe la culture d'entreprise et s'assure du bien-être des équipes. Spécialiste en développement des talents.</p>
|
163 |
+
<div class="mt-6 flex space-x-4">
|
164 |
+
<a href="#" class="text-blue-500 social-icon"><i class="fab fa-linkedin-in text-lg"></i></a>
|
165 |
+
<a href="#" class="text-green-500 social-icon"><i class="fas fa-envelope text-lg"></i></a>
|
166 |
+
</div>
|
167 |
+
</div>
|
168 |
+
</div>
|
169 |
+
|
170 |
+
<!-- Carte 6 - Vide pour ajouter une nouvelle personne -->
|
171 |
+
<div class="bg-white rounded-xl overflow-hidden shadow-lg border-2 border-dashed border-gray-300 flex flex-col justify-center items-center min-h-full card-hover-effect hover:border-blue-500">
|
172 |
+
<div class="p-6 text-center">
|
173 |
+
<div class="mx-auto flex items-center justify-center h-12 w-12 rounded-full bg-blue-100 mb-4">
|
174 |
+
<i class="fas fa-plus text-blue-500 text-xl"></i>
|
175 |
+
</div>
|
176 |
+
<h3 class="text-lg font-medium text-gray-900">Ajouter un membre</h3>
|
177 |
+
<p class="mt-1 text-sm text-gray-500">Cliquez pour ajouter une nouvelle personne à l'équipe</p>
|
178 |
+
<button class="mt-4 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 focus:outline-none">
|
179 |
+
<i class="fas fa-user-plus mr-2"></i> Nouveau profil
|
180 |
+
</button>
|
181 |
+
</div>
|
182 |
+
</div>
|
183 |
+
</div>
|
184 |
+
</div>
|
185 |
+
|
186 |
+
<script>
|
187 |
+
// Fonction pour basculer l'état "favori"
|
188 |
+
function toggleFavorite(button) {
|
189 |
+
const icon = button.querySelector('i');
|
190 |
+
if (icon.classList.contains('far')) {
|
191 |
+
icon.classList.remove('far');
|
192 |
+
icon.classList.add('fas');
|
193 |
+
button.classList.remove('text-gray-400');
|
194 |
+
button.classList.add('text-red-500');
|
195 |
+
} else {
|
196 |
+
icon.classList.remove('fas');
|
197 |
+
icon.classList.add('far');
|
198 |
+
button.classList.remove('text-red-500');
|
199 |
+
button.classList.add('text-gray-400');
|
200 |
+
}
|
201 |
+
}
|
202 |
+
|
203 |
+
// Animation au chargement de la page
|
204 |
+
document.addEventListener('DOMContentLoaded', () => {
|
205 |
+
const cards = document.querySelectorAll('.card-hover-effect');
|
206 |
+
cards.forEach((card, index) => {
|
207 |
+
setTimeout(() => {
|
208 |
+
card.style.opacity = '1';
|
209 |
+
card.style.transform = 'translateY(0)';
|
210 |
+
}, 100 * index);
|
211 |
+
});
|
212 |
+
});
|
213 |
+
</script>
|
214 |
+
<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-team" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
215 |
+
</html>
|