Sasanou commited on
Commit
15f0a6f
·
verified ·
1 Parent(s): 009f39b

- Follow Up Deployment

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +399 -19
  3. prompts.txt +13 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Wingswebsite
3
- emoji: 🦀
4
- colorFrom: indigo
5
  colorTo: blue
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: wingswebsite
3
+ emoji: 🐳
4
+ colorFrom: pink
5
  colorTo: blue
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,399 @@
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>Wings - L'IA qui trouve ton crush</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
+ <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@800;900&display=swap" rel="stylesheet">
10
+ <script>
11
+ tailwind.config = {
12
+ theme: {
13
+ extend: {
14
+ colors: {
15
+ 'wings-pink': '#ff5e8e',
16
+ 'wings-purple': '#9d5cff',
17
+ 'wings-dark': '#1a1a2e',
18
+ 'wings-blue': '#3d5af1',
19
+ }
20
+ }
21
+ }
22
+ }
23
+ </script>
24
+ <style>
25
+ body {
26
+ font-family: 'Poppins', sans-serif;
27
+ scroll-behavior: smooth;
28
+ }
29
+
30
+ .title-font {
31
+ font-family: 'Montserrat', sans-serif;
32
+ }
33
+
34
+ .gradient-bg {
35
+ background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
36
+ }
37
+
38
+ .hero-pattern {
39
+ background: radial-gradient(circle at 75% 30%, rgba(157, 92, 255, 0.15) 0%, transparent 50%),
40
+ radial-gradient(circle at 25% 70%, rgba(255, 94, 142, 0.15) 0%, transparent 50%);
41
+ }
42
+
43
+ .feature-card {
44
+ transition: all 0.3s ease;
45
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
46
+ }
47
+
48
+ .feature-card:hover {
49
+ transform: translateY(-5px);
50
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
51
+ }
52
+
53
+ .floating {
54
+ animation: floating 3s ease-in-out infinite;
55
+ }
56
+
57
+ @keyframes floating {
58
+ 0% { transform: translate(0, 0px); }
59
+ 50% { transform: translate(0, 15px); }
60
+ 100% { transform: translate(0, -0px); }
61
+ }
62
+
63
+ .phone-frame {
64
+ position: relative;
65
+ border-radius: 40px;
66
+ overflow: hidden;
67
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
68
+ border: 12px solid #1a1a2e;
69
+ }
70
+
71
+ .divider {
72
+ position: relative;
73
+ height: 2px;
74
+ background: linear-gradient(to right, transparent, rgba(255, 94, 142, 0.5), transparent);
75
+ }
76
+
77
+ .download-btn {
78
+ transition: all 0.3s ease;
79
+ }
80
+
81
+ .download-btn:hover {
82
+ transform: scale(1.05);
83
+ box-shadow: 0 10px 25px -5px rgba(255, 94, 142, 0.3);
84
+ }
85
+
86
+ .glow {
87
+ box-shadow: 0 0 20px rgba(157, 92, 255, 0.5);
88
+ }
89
+ </style>
90
+ </head>
91
+ <body class="gradient-bg text-white">
92
+ <!-- Header -->
93
+ <header class="absolute top-0 left-0 w-full z-50 py-6 px-4 md:px-8">
94
+ <div class="max-w-7xl mx-auto flex justify-between items-center">
95
+ <div class="flex items-center">
96
+ <div class="w-10 h-10 rounded-full bg-gradient-to-r from-wings-pink to-wings-purple flex items-center justify-center">
97
+ <i class="fas fa-dove text-white text-xl"></i>
98
+ </div>
99
+ <span class="title-font text-2xl ml-3 bg-gradient-to-r from-wings-pink to-wings-blue bg-clip-text text-transparent">Wings</span>
100
+ </div>
101
+ <div>
102
+ <a href="#download" class="hidden md:inline-block bg-wings-pink hover:bg-opacity-90 text-white font-semibold py-2 px-6 rounded-full transition duration-300">
103
+ Télécharger
104
+ </a>
105
+ </div>
106
+ </div>
107
+ </header>
108
+
109
+ <!-- Hero Section -->
110
+ <section class="min-h-screen hero-pattern flex items-center pt-16 pb-24 px-4">
111
+ <div class="max-w-7xl mx-auto grid md:grid-cols-2 gap-12 items-center">
112
+ <div class="text-center md:text-left z-10">
113
+ <div class="inline-block bg-black bg-opacity-30 px-4 py-1 rounded-full mb-4">
114
+ <span class="text-sm font-semibold text-wings-pink">La révolution des rencontres</span>
115
+ </div>
116
+ <h1 class="title-font text-4xl md:text-6xl lg:text-7xl font-bold leading-tight mb-6">
117
+ L'IA qui trouve <br><span class="bg-gradient-to-r from-wings-pink to-wings-blue bg-clip-text text-transparent">ton crush</span>
118
+ </h1>
119
+ <p class="text-xl text-gray-200 mb-8 max-w-lg mx-auto md:mx-0">
120
+ Ton avatar IA te trouve ton prochain crush et des évènements près de chez toi.
121
+ </p>
122
+
123
+ <div class="flex flex-col sm:flex-row gap-4 justify-center md:justify-start">
124
+ <a href="https://apps.apple.com/fr/app/wings-jeudi-ou-jamais/id6483928605" class="download-btn">
125
+ <img src="https://wings.dating/dist/images/appstore.png" alt="Download on App Store" class="w-48 glow rounded-xl">
126
+ </a>
127
+ <a href="https://play.google.com/store/apps/details?id=com.clustered.wings&hl=fr" class="download-btn">
128
+ <img src="https://wings.dating/dist/images/playstore.png" alt="Download on Google Play" class="w-48 glow rounded-xl">
129
+ </a>
130
+ </div>
131
+ </div>
132
+
133
+ <div class="relative flex justify-center">
134
+ <div class="relative floating">
135
+ <div class="phone-frame mx-auto w-72">
136
+ <img src="https://wings.dating/dist/images/screens.png" alt="Wings App Screens" class="w-full">
137
+ </div>
138
+ <div class="absolute -bottom-10 -left-12 z-0">
139
+ <img src="https://wings.dating/dist/images/Middle2.svg" alt="Illustration" class="w-64 opacity-80">
140
+ </div>
141
+ </div>
142
+ </div>
143
+ </div>
144
+ </section>
145
+
146
+ <!-- Value Proposition -->
147
+ <section class="py-20 px-4">
148
+ <div class="max-w-4xl mx-auto text-center">
149
+ <div class="inline-block bg-gradient-to-r from-wings-purple to-wings-blue px-6 py-2 rounded-full mb-6">
150
+ <h2 class="title-font text-xl md:text-3xl">Encore une nouvelle App... Mais qu'est-ce qui change ?</h2>
151
+ </div>
152
+ <p class="text-xl text-gray-300 mb-12 max-w-2xl mx-auto">
153
+ Finis les temps perdus à swiper et les attentes interminables pour des discussions sans fin.
154
+ Avec Wings, les matchs et évènements viennent à toi. Il te suffit de t'inscrire.
155
+ </p>
156
+
157
+ <div class="grid md:grid-cols-3 gap-8 mt-16">
158
+ <div class="feature-card bg-gradient-to-br from-wings-dark via-gray-900 to-wings-dark rounded-2xl p-8 border border-gray-800">
159
+ <div class="w-16 h-16 rounded-full bg-wings-pink flex items-center justify-center mb-6">
160
+ <i class="fas fa-bolt text-white text-2xl"></i>
161
+ </div>
162
+ <h3 class="text-xl font-semibold mb-3">Gain de temps</h3>
163
+ <p class="text-gray-400">Plus besoin de swiper pendant des heures, l'IA fait le travail pour toi.</p>
164
+ </div>
165
+ <div class="feature-card bg-gradient-to-br from-wings-dark via-gray-900 to-wings-dark rounded-2xl p-8 border border-gray-800">
166
+ <div class="w-16 h-16 rounded-full bg-wings-purple flex items-center justify-center mb-6">
167
+ <i class="fas fa-calendar-star text-white text-2xl"></i>
168
+ </div>
169
+ <h3 class="text-xl font-semibold mb-3">Événements réels</h3>
170
+ <p class="text-gray-400">Des rencontres organisées près de chez toi pour passer à la vraie vie.</p>
171
+ </div>
172
+ <div class="feature-card bg-gradient-to-br from-wings-dark via-gray-900 to-wings-dark rounded-2xl p-8 border border-gray-800">
173
+ <div class="w-16 h-16 rounded-full bg-wings-blue flex items-center justify-center mb-6">
174
+ <i class="fas fa-brain text-white text-2xl"></i>
175
+ </div>
176
+ <h3 class="text-xl font-semibold mb-3">Apprentissage continu</h3>
177
+ <p class="text-gray-400">Ton avatar IA s'améliore à chaque interaction pour de meilleures suggestions.</p>
178
+ </div>
179
+ </div>
180
+ </div>
181
+ </section>
182
+
183
+ <!-- How it works -->
184
+ <section class="py-20 px-4">
185
+ <div class="max-w-7xl mx-auto">
186
+ <div class="text-center mb-16">
187
+ <h2 class="title-font text-3xl md:text-5xl mb-4">Comment ça fonctionne ?</h2>
188
+ <div class="divider w-24 h-1 bg-wings-pink mx-auto rounded-full"></div>
189
+ </div>
190
+
191
+ <div class="grid grid-cols-1 lg:grid-cols-2 items-center gap-12">
192
+ <div class="order-2 lg:order-1">
193
+ <p class="text-2xl mb-6 font-medium">
194
+ Crée ton avatar WiA en quelques minutes. Grâce à une empreinte étendue dans l'app, il apprend continuellement de tes interactions pour te trouver les meilleurs matchs et évènements dans la vraie vie.
195
+ </p>
196
+ <p class="text-gray-300">
197
+ Chez Wings, nous utilisons la technologie pour encourager les interactions humaines et réduire le temps passé sur le téléphone au profit de vraies rencontres de qualité.
198
+ </p>
199
+
200
+ <div class="mt-10 grid sm:grid-cols-2 gap-6">
201
+ <div class="flex">
202
+ <div class="flex-shrink-0">
203
+ <div class="w-12 h-12 rounded-full bg-wings-purple bg-opacity-20 flex items-center justify-center">
204
+ <i class="fas fa-user text-wings-purple text-xl"></i>
205
+ </div>
206
+ </div>
207
+ <div class="ml-4">
208
+ <h4 class="text-lg font-semibold">Profil personnalisé</h4>
209
+ <p class="text-gray-400 text-sm">Réponds à quelques questions pour créer ton avatar</p>
210
+ </div>
211
+ </div>
212
+ <div class="flex">
213
+ <div class="flex-shrink-0">
214
+ <div class="w-12 h-12 rounded-full bg-wings-pink bg-opacity-20 flex items-center justify-center">
215
+ <i class="fas fa-robot text-wings-pink text-xl"></i>
216
+ </div>
217
+ </div>
218
+ <div class="ml-4">
219
+ <h4 class="text-lg font-semibold">IA active 24/7</h4>
220
+ <p class="text-gray-400 text-sm">Ton avatar travaille pour toi jour et nuit</p>
221
+ </div>
222
+ </div>
223
+ </div>
224
+ </div>
225
+
226
+ <div class="order-1 lg:order-2 flex justify-center">
227
+ <div class="relative">
228
+ <div class="floating">
229
+ <img src="https://wings.dating/dist/images/love.svg" alt="Feature 01" class="w-full max-w-md">
230
+ </div>
231
+ </div>
232
+ </div>
233
+ </div>
234
+ </div>
235
+ </section>
236
+
237
+ <!-- Features -->
238
+ <section class="py-20 px-4">
239
+ <div class="max-w-7xl mx-auto">
240
+ <!-- Feature 1 -->
241
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-16 items-center mb-32">
242
+ <div>
243
+ <div class="floating">
244
+ <img src="https://wings.dating/dist/images/feat1.svg" alt="Des matchs de qualité" class="w-full max-w-md">
245
+ </div>
246
+ </div>
247
+
248
+ <div>
249
+ <h2 class="title-font text-3xl md:text-4xl mb-6">
250
+ Des <span class="text-wings-pink">matchs de qualité</span>
251
+ </h2>
252
+ <p class="text-gray-300 mb-6 text-lg">
253
+ Ton avatar Wia se déplace, voit et discute avec d'autres avatars pour te dénicher les meilleurs matchs et évènements, et ça matin, midi et soir !
254
+ </p>
255
+ <ul class="space-y-4">
256
+ <li class="flex items-start">
257
+ <div class="flex-shrink-0 mt-1">
258
+ <div class="w-8 h-8 rounded-full bg-wings-pink bg-opacity-20 flex items-center justify-center">
259
+ <i class="fas fa-check text-wings-pink"></i>
260
+ </div>
261
+ </div>
262
+ <p class="ml-3 text-gray-300">Des suggestions basées sur des centaines de critères</p>
263
+ </li>
264
+ <li class="flex items-start">
265
+ <div class="flex-shrink-0 mt-1">
266
+ <div class="w-8 h-8 rounded-full bg-wings-purple bg-opacity-20 flex items-center justify-center">
267
+ <i class="fas fa-check text-wings-purple"></i>
268
+ </div>
269
+ </div>
270
+ <p class="ml-3 text-gray-300">Analyse de compatibilité en temps réel</p>
271
+ </li>
272
+ <li class="flex items-start">
273
+ <div class="flex-shrink-0 mt-1">
274
+ <div class="w-8 h-8 rounded-full bg-wings-blue bg-opacity-20 flex items-center justify-center">
275
+ <i class="fas fa-check text-wings-blue"></i>
276
+ </div>
277
+ </div>
278
+ <p class="ml-3 text-gray-300">Réduction du ghosting grâce à l'engagement réel</p>
279
+ </li>
280
+ </ul>
281
+ </div>
282
+ </div>
283
+
284
+ <!-- Feature 2 -->
285
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-16 items-center">
286
+ <div class="lg:order-2">
287
+ <div class="floating">
288
+ <img src="https://wings.dating/dist/images/invitation.png" alt="Invitations" class="w-full max-w-md rounded-2xl border-4 border-wings-purple border-opacity-20">
289
+ </div>
290
+ </div>
291
+
292
+ <div class="lg:order-1">
293
+ <h2 class="title-font text-3xl md:text-4xl mb-6">
294
+ Faites-vous inviter à des <span class="text-wings-blue">soirées sur-mesure</span>
295
+ </h2>
296
+ <p class="text-gray-300 mb-6 text-lg">
297
+ Votre avatar WiA se charge de dénicher des invitations à des événements Wings créés au fil de l'eau avec celles et ceux qui vous correspondent, près de chez vous.
298
+ </p>
299
+ <div class="bg-gray-900 bg-opacity-50 p-6 rounded-xl border border-gray-800">
300
+ <div class="flex">
301
+ <div class="flex-shrink-0">
302
+ <i class="fas fa-calendar-day text-wings-blue text-2xl"></i>
303
+ </div>
304
+ <div class="ml-4">
305
+ <p class="font-medium">Votre profil détermine les événements où vous êtes prioritaire</p>
306
+ <p class="text-gray-400 text-sm mt-2">Plus vous interagissez, plus vos invitations seront ciblées</p>
307
+ </div>
308
+ </div>
309
+ </div>
310
+ </div>
311
+ </div>
312
+ </div>
313
+ </section>
314
+
315
+ <!-- Download CTA -->
316
+ <section id="download" class="py-28 px-4 bg-gradient-to-b from-wings-dark to-gray-900">
317
+ <div class="max-w-4xl mx-auto text-center">
318
+ <h2 class="title-font text-3xl md:text-5xl mb-8">
319
+ Prêt pour <span class="bg-gradient-to-r from-wings-pink to-wings-blue bg-clip-text text-transparent">l'aventure</span> ?
320
+ </h2>
321
+ <p class="text-xl text-gray-300 mb-12 max-w-2xl mx-auto">
322
+ Rejoins la révolution des rencontres grâce à l'intelligence artificielle
323
+ </p>
324
+
325
+ <div class="flex flex-col sm:flex-row gap-4 justify-center">
326
+ <a href="https://apps.apple.com/fr/app/wings-jeudi-ou-jamais/id6483928605" class="download-btn">
327
+ <img src="https://wings.dating/dist/images/appstore.png" alt="Download on App Store" class="w-48 rounded-xl">
328
+ </a>
329
+ <a href="https://play.google.com/store/apps/details?id=com.clustered.wings&hl=fr" class="download-btn">
330
+ <img src="https://wings.dating/dist/images/playstore.png" alt="Download on Google Play" class="w-48 rounded-xl">
331
+ </a>
332
+ </div>
333
+ </div>
334
+ </section>
335
+
336
+ <!-- Footer -->
337
+ <footer class="py-12 px-4 border-t border-gray-800">
338
+ <div class="max-w-7xl mx-auto">
339
+ <div class="text-center">
340
+ <div class="flex justify-center mb-6">
341
+ <div class="w-14 h-14 rounded-full bg-gradient-to-r from-wings-pink to-wings-blue flex items-center justify-center">
342
+ <i class="fas fa-dove text-white text-2xl"></i>
343
+ </div>
344
+ </div>
345
+ <p class="text-gray-400 mb-6">
346
+ © 2023 Wings - La révolution des rencontres par l'IA
347
+ </p>
348
+ <div class="flex justify-center space-x-4">
349
+ <a href="#" class="text-gray-400 hover:text-white transition">
350
+ <i class="fab fa-instagram text-lg"></i>
351
+ </a>
352
+ <a href="#" class="text-gray-400 hover:text-white transition">
353
+ <i class="fab fa-tiktok text-lg"></i>
354
+ </a>
355
+ <a href="#" class="text-gray-400 hover:text-white transition">
356
+ <i class="fab fa-twitter text-lg"></i>
357
+ </a>
358
+ </div>
359
+ </div>
360
+ </div>
361
+ </footer>
362
+
363
+ <!-- Floating chat button -->
364
+ <div class="fixed bottom-6 right-6">
365
+ <button class="w-14 h-14 rounded-full bg-wings-pink flex items-center justify-center shadow-lg hover:scale-110 transition-transform">
366
+ <i class="fas fa-comment-alt text-white text-xl"></i>
367
+ </button>
368
+ </div>
369
+
370
+ <script>
371
+ // Floating animation
372
+ document.addEventListener('DOMContentLoaded', function() {
373
+ // Simple animation observer
374
+ const observer = new IntersectionObserver((entries) => {
375
+ entries.forEach(entry => {
376
+ if (entry.isIntersecting) {
377
+ entry.target.classList.add('animate-fadeIn');
378
+ }
379
+ });
380
+ }, { threshold: 0.1 });
381
+
382
+ document.querySelectorAll('section').forEach(section => {
383
+ observer.observe(section);
384
+ });
385
+
386
+ // Add scroll-based animations
387
+ window.addEventListener('scroll', function() {
388
+ const floatingBtn = document.querySelector('.floating');
389
+ const scrollPosition = window.scrollY;
390
+
391
+ if (floatingBtn) {
392
+ const translateY = Math.sin(scrollPosition * 0.01) * 10;
393
+ floatingBtn.style.transform = `translateY(${translateY}px)`;
394
+ }
395
+ });
396
+ });
397
+ </script>
398
+ <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=Sasanou/wingswebsite" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
399
+ </html>
prompts.txt ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ the page should have a max with as per standrad modern website practices
2
+ the page should have a max with as per standrad modern website practices
3
+ the top bas should be 100% all the time
4
+ use fec346 as and f69031 as colors
5
+ use this as png logo https://xgdx-4o67-owyh.n7.xano.io/workspace/7-0/database/109?cell=3.file and next to it write Vee which is the name of the app
6
+ this is the logo https://xgdx-4o67-owyh.n7.xano.io/vault/uquLAhcf/x3_9RKgqjfx4w_EmPBOz0-hwVAs/ztn8jw../2.png
7
+ it should be transparent
8
+ this is the right link : https://xgdx-4o67-owyh.n7.xano.io/vault/uquLAhcf/SGzr2YNskBUhO9KeV6lLbnvoHEw/uPpgkg../Design+sans+titre.png
9
+ use thsi for logo : https://xgdx-4o67-owyh.n7.xano.io/vault/uquLAhcf/SGzr2YNskBUhO9KeV6lLbnvoHEw/uPpgkg../Design+sans+titre.png
10
+ the top bar should be brighter
11
+ css: body { overflow: hidden; position: absolute; width: 100%; height: 100dvh; background: linear-gradient( to top, #DCB697 0%, #9BA5AE 35%, #3E5879 100% ); } div { position: absolute; top: 50%; left: 50%; width: 1em; height: 1em; margin: -.5em 0 0 -.5em; font-size: clamp(3px, 2vw, 4px); border-radius: 1em; background-color: currentColor; } and js: import { createTimeline, stagger, utils, } from 'https://esm.sh/animejs'; const { random, cos, sin, sqrt, PI } = Math; const count = 2500; const duration = 3000; const win = { w: window.innerWidth * .26, h: window.innerHeight * .26 }; const target = { x: 0, y: 0, r: win.w * .25 }; const radius = Symbol(); const theta = Symbol(); for (let i = 0; i < count; i++) { const $el = document.createElement('div'); const h = utils.random(15, 25); const l = utils.random(10, 18); utils.set($el, { background: `hsl(${h}, 60%, ${l}%)` }); $el[theta] = random() * PI * 2; $el[radius] = target.r * sqrt(random()); document.body.appendChild($el); } const tl = createTimeline({ defaults: { loop: true, ease: 'inOut(1.3)', onLoop: self => self.refresh(), }, }); tl.add('div', { x: $el => target.x + ($el[radius] * cos($el[theta])), y: $el => target.y + ($el[radius] * sin($el[theta])), duration: () => duration + utils.random(-100, 100), ease: 'inOut(1.5)', onLoop: self => { const t = self.targets[0]; t[theta] = random() * PI * 2; t[radius] = target.r * sqrt(random()); self.refresh(); }, }, stagger((duration / count) * 1.125)) .add(target, { r: () => win.w * utils.random(.05, .5, 2), duration: 1250, }, 0) .add(target, { x: () => utils.random(-win.w, win.w), modifier: x => x + sin(tl.currentTime * .0007) * (win.w * .65), duration: 2800, }, 0) .add(target, { y: () => utils.random(-win.h, win.h), modifier: y => y + cos(tl.currentTime * .00012) * (win.h * .65), duration: 1800, }, 0); tl.seek(20000) integrate this as the back ground of the top section
12
+ non the animation shoud indenetetly exute in back gournd - now all website elemnt are moving
13
+ everything is moving !!!