Spaces:
Running
Running
<html lang="fr"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Wings - L'IA qui trouve ton crush</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@800;900&display=swap" rel="stylesheet"> | |
<script> | |
tailwind.config = { | |
theme: { | |
extend: { | |
colors: { | |
'wings-pink': '#ff5e8e', | |
'wings-purple': '#9d5cff', | |
'wings-dark': '#1a1a2e', | |
'wings-blue': '#3d5af1', | |
} | |
} | |
} | |
} | |
</script> | |
<style> | |
body { | |
font-family: 'Poppins', sans-serif; | |
scroll-behavior: smooth; | |
} | |
.title-font { | |
font-family: 'Montserrat', sans-serif; | |
} | |
.gradient-bg { | |
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); | |
} | |
.hero-pattern { | |
background: radial-gradient(circle at 75% 30%, rgba(157, 92, 255, 0.15) 0%, transparent 50%), | |
radial-gradient(circle at 25% 70%, rgba(255, 94, 142, 0.15) 0%, transparent 50%); | |
} | |
.feature-card { | |
transition: all 0.3s ease; | |
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
} | |
.feature-card:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
} | |
.floating { | |
animation: floating 3s ease-in-out infinite; | |
} | |
@keyframes floating { | |
0% { transform: translate(0, 0px); } | |
50% { transform: translate(0, 15px); } | |
100% { transform: translate(0, -0px); } | |
} | |
.phone-frame { | |
position: relative; | |
border-radius: 40px; | |
overflow: hidden; | |
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); | |
border: 12px solid #1a1a2e; | |
} | |
.divider { | |
position: relative; | |
height: 2px; | |
background: linear-gradient(to right, transparent, rgba(255, 94, 142, 0.5), transparent); | |
} | |
.download-btn { | |
transition: all 0.3s ease; | |
} | |
.download-btn:hover { | |
transform: scale(1.05); | |
box-shadow: 0 10px 25px -5px rgba(255, 94, 142, 0.3); | |
} | |
.glow { | |
box-shadow: 0 0 20px rgba(157, 92, 255, 0.5); | |
} | |
</style> | |
</head> | |
<body class="gradient-bg text-white"> | |
<!-- Header --> | |
<header class="absolute top-0 left-0 w-full z-50 py-6 px-4 md:px-8"> | |
<div class="max-w-7xl mx-auto flex justify-between items-center"> | |
<div class="flex items-center"> | |
<div class="w-10 h-10 rounded-full bg-gradient-to-r from-wings-pink to-wings-purple flex items-center justify-center"> | |
<i class="fas fa-dove text-white text-xl"></i> | |
</div> | |
<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> | |
</div> | |
<div> | |
<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"> | |
Télécharger | |
</a> | |
</div> | |
</div> | |
</header> | |
<!-- Hero Section --> | |
<section class="min-h-screen hero-pattern flex items-center pt-16 pb-24 px-4"> | |
<div class="max-w-7xl mx-auto grid md:grid-cols-2 gap-12 items-center"> | |
<div class="text-center md:text-left z-10"> | |
<div class="inline-block bg-black bg-opacity-30 px-4 py-1 rounded-full mb-4"> | |
<span class="text-sm font-semibold text-wings-pink">La révolution des rencontres</span> | |
</div> | |
<div class="flex flex-col sm:flex-row items-center gap-4 mb-6"> | |
<h1 class="title-font text-4xl md:text-6xl lg:text-7xl font-bold leading-tight"> | |
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> | |
</h1> | |
</div> | |
<p class="text-xl text-gray-200 mb-8 max-w-lg mx-auto md:mx-0"> | |
Ton avatar IA te trouve ton prochain crush et des évènements près de chez toi. | |
</p> | |
<div class="flex flex-col sm:flex-row gap-4 justify-center md:justify-start"> | |
<a href="https://apps.apple.com/fr/app/wings-jeudi-ou-jamais/id6483928605" class="download-btn"> | |
<img src="https://wings.dating/dist/images/appstore.png" alt="Download on App Store" class="w-48 glow rounded-xl"> | |
</a> | |
<a href="https://play.google.com/store/apps/details?id=com.clustered.wings&hl=fr" class="download-btn"> | |
<img src="https://wings.dating/dist/images/playstore.png" alt="Download on Google Play" class="w-48 glow rounded-xl"> | |
</a> | |
</div> | |
</div> | |
<div class="relative flex justify-center"> | |
<div class="relative floating"> | |
<div class="phone-frame mx-auto w-72"> | |
<img src="https://wings.dating/dist/images/love.svg" alt="Wings App Screens" class="w-full"> | |
</div> | |
<div class="absolute -bottom-10 -left-12 z-0"> | |
<img src="https://wings.dating/dist/images/Middle2.svg" alt="Illustration" class="w-64 opacity-80"> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Value Proposition --> | |
<section class="py-20 px-4"> | |
<div class="max-w-4xl mx-auto text-center"> | |
<div class="inline-block bg-gradient-to-r from-wings-purple to-wings-blue px-6 py-2 rounded-full mb-6"> | |
<h2 class="title-font text-xl md:text-3xl">Encore une nouvelle App... Mais qu'est-ce qui change ?</h2> | |
</div> | |
<p class="text-xl text-gray-300 mb-12 max-w-2xl mx-auto"> | |
Finis les temps perdus à swiper et les attentes interminables pour des discussions sans fin. | |
Avec Wings, les matchs et évènements viennent à toi. Il te suffit de t'inscrire. | |
</p> | |
<div class="grid md:grid-cols-3 gap-8 mt-16"> | |
<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"> | |
<div class="w-16 h-16 rounded-full bg-wings-pink flex items-center justify-center mb-6"> | |
<i class="fas fa-bolt text-white text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold mb-3">Gain de temps</h3> | |
<p class="text-gray-400">Plus besoin de swiper pendant des heures, l'IA fait le travail pour toi.</p> | |
</div> | |
<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"> | |
<div class="w-16 h-16 rounded-full bg-wings-purple flex items-center justify-center mb-6"> | |
<i class="fas fa-calendar-star text-white text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold mb-3">Événements réels</h3> | |
<p class="text-gray-400">Des rencontres organisées près de chez toi pour passer à la vraie vie.</p> | |
</div> | |
<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"> | |
<div class="w-16 h-16 rounded-full bg-wings-blue flex items-center justify-center mb-6"> | |
<i class="fas fa-brain text-white text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold mb-3">Apprentissage continu</h3> | |
<p class="text-gray-400">Ton avatar IA s'améliore à chaque interaction pour de meilleures suggestions.</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- How it works --> | |
<section class="py-20 px-4"> | |
<div class="max-w-7xl mx-auto"> | |
<div class="text-center mb-16"> | |
<h2 class="title-font text-3xl md:text-5xl mb-4">Comment ça fonctionne ?</h2> | |
<div class="divider w-24 h-1 bg-wings-pink mx-auto rounded-full"></div> | |
</div> | |
<div class="grid grid-cols-1 lg:grid-cols-2 items-center gap-12"> | |
<div class="order-2 lg:order-1"> | |
<p class="text-2xl mb-6 font-medium"> | |
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. | |
</p> | |
<p class="text-gray-300"> | |
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é. | |
</p> | |
<div class="mt-10 grid sm:grid-cols-2 gap-6"> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="w-12 h-12 rounded-full bg-wings-purple bg-opacity-20 flex items-center justify-center"> | |
<i class="fas fa-user text-wings-purple text-xl"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h4 class="text-lg font-semibold">Avatar personnalisé</h4> | |
<p class="text-gray-400 text-sm">Ton avatar reste à ta disposition pour mieux comprendre tes besoins et te conseiller</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="w-12 h-12 rounded-full bg-wings-pink bg-opacity-20 flex items-center justify-center"> | |
<i class="fas fa-robot text-wings-pink text-xl"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h4 class="text-lg font-semibold">IA active 24/7</h4> | |
<p class="text-gray-400 text-sm">Ton avatar travaille pour toi jour et nuit</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="order-1 lg:order-2 flex justify-center"> | |
<div class="relative"> | |
<div class="floating"> | |
<img src="https://wings.dating/dist/images/love.svg" alt="Feature 01" class="w-full max-w-md"> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Features --> | |
<section class="py-20 px-4"> | |
<div class="max-w-7xl mx-auto"> | |
<!-- Feature 1 --> | |
<div class="grid grid-cols-1 lg:grid-cols-2 gap-16 items-center mb-32"> | |
<div> | |
<div class="floating"> | |
<img src="https://www.svgrepo.com/show/444797/drink-cocktail.svg" alt="Cocktail drink" class="w-full max-w-md"> | |
</div> | |
</div> | |
<div> | |
<h2 class="title-font text-3xl md:text-4xl mb-6"> | |
Des <span class="text-wings-pink">matchs de qualité</span> | |
</h2> | |
<p class="text-gray-300 mb-6 text-lg"> | |
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 ! | |
</p> | |
<ul class="space-y-4"> | |
<li class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-8 h-8 rounded-full bg-wings-pink bg-opacity-20 flex items-center justify-center"> | |
<i class="fas fa-check text-wings-pink"></i> | |
</div> | |
</div> | |
<p class="ml-3 text-gray-300">Des suggestions basées sur des centaines de critères</p> | |
</li> | |
<li class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-8 h-8 rounded-full bg-wings-purple bg-opacity-20 flex items-center justify-center"> | |
<i class="fas fa-check text-wings-purple"></i> | |
</div> | |
</div> | |
<p class="ml-3 text-gray-300">Analyse de compatibilité en temps réel</p> | |
</li> | |
<li class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="w-8 h-8 rounded-full bg-wings-blue bg-opacity-20 flex items-center justify-center"> | |
<i class="fas fa-check text-wings-blue"></i> | |
</div> | |
</div> | |
<p class="ml-3 text-gray-300">Réduction du ghosting grâce à l'engagement réel</p> | |
</li> | |
</ul> | |
</div> | |
</div> | |
<!-- Feature 2 --> | |
<div class="grid grid-cols-1 lg:grid-cols-2 gap-16 items-center"> | |
<div class="lg:order-2"> | |
<div class="floating"> | |
<img src="https://www.svgrepo.com/show/444797/drink-cocktail.svg" alt="Cocktail drink" class="w-full max-w-md"> | |
</div> | |
</div> | |
<div class="lg:order-1"> | |
<h2 class="title-font text-3xl md:text-4xl mb-6"> | |
Faites-vous inviter à des <span class="text-wings-blue">soirées sur-mesure</span> | |
</h2> | |
<p class="text-gray-300 mb-6 text-lg"> | |
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. | |
</p> | |
<div class="bg-gray-900 bg-opacity-50 p-6 rounded-xl border border-gray-800"> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<i class="fas fa-calendar-day text-wings-blue text-2xl"></i> | |
</div> | |
<div class="ml-4"> | |
<p class="font-medium">Votre profil détermine les événements où vous êtes prioritaire</p> | |
<p class="text-gray-400 text-sm mt-2">Plus vous interagissez, plus vos invitations seront ciblées</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Download CTA --> | |
<section id="download" class="py-28 px-4 bg-gradient-to-b from-wings-dark to-gray-900"> | |
<div class="max-w-4xl mx-auto text-center"> | |
<h2 class="title-font text-3xl md:text-5xl mb-8"> | |
Prêt pour <span class="bg-gradient-to-r from-wings-pink to-wings-blue bg-clip-text text-transparent">l'aventure</span> ? | |
</h2> | |
<p class="text-xl text-gray-300 mb-12 max-w-2xl mx-auto"> | |
Rejoins la révolution des rencontres grâce à l'intelligence artificielle | |
</p> | |
<div class="flex flex-col sm:flex-row gap-4 justify-center"> | |
<a href="https://apps.apple.com/fr/app/wings-jeudi-ou-jamais/id6483928605" class="download-btn"> | |
<img src="https://wings.dating/dist/images/appstore.png" alt="Download on App Store" class="w-48 rounded-xl"> | |
</a> | |
<a href="https://play.google.com/store/apps/details?id=com.clustered.wings&hl=fr" class="download-btn"> | |
<img src="https://wings.dating/dist/images/playstore.png" alt="Download on Google Play" class="w-48 rounded-xl"> | |
</a> | |
</div> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="py-12 px-4 border-t border-gray-800"> | |
<div class="max-w-7xl mx-auto"> | |
<div class="text-center"> | |
<div class="flex justify-center mb-6"> | |
<div class="w-14 h-14 rounded-full bg-gradient-to-r from-wings-pink to-wings-blue flex items-center justify-center"> | |
<i class="fas fa-dove text-white text-2xl"></i> | |
</div> | |
</div> | |
<p class="text-gray-400 mb-6"> | |
© 2023 Wings - La révolution des rencontres par l'IA | |
</p> | |
<div class="flex justify-center space-x-4"> | |
<a href="#" class="text-gray-400 hover:text-white transition"> | |
<i class="fab fa-instagram text-lg"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition"> | |
<i class="fab fa-tiktok text-lg"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition"> | |
<i class="fab fa-twitter text-lg"></i> | |
</a> | |
</div> | |
</div> | |
</div> | |
</footer> | |
<!-- Floating chat button --> | |
<div class="fixed bottom-6 right-6"> | |
<button class="w-14 h-14 rounded-full bg-wings-pink flex items-center justify-center shadow-lg hover:scale-110 transition-transform"> | |
<i class="fas fa-comment-alt text-white text-xl"></i> | |
</button> | |
</div> | |
<script> | |
// Floating animation | |
document.addEventListener('DOMContentLoaded', function() { | |
// Simple animation observer | |
const observer = new IntersectionObserver((entries) => { | |
entries.forEach(entry => { | |
if (entry.isIntersecting) { | |
entry.target.classList.add('animate-fadeIn'); | |
} | |
}); | |
}, { threshold: 0.1 }); | |
document.querySelectorAll('section').forEach(section => { | |
observer.observe(section); | |
}); | |
// Add scroll-based animations | |
window.addEventListener('scroll', function() { | |
const floatingBtn = document.querySelector('.floating'); | |
const scrollPosition = window.scrollY; | |
if (floatingBtn) { | |
const translateY = Math.sin(scrollPosition * 0.01) * 10; | |
floatingBtn.style.transform = `translateY(${translateY}px)`; | |
} | |
}); | |
}); | |
</script> | |
<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> | |
</html> |