visionnova-redesign / index.html
AmixDigital's picture
Redesign ce site en le rendant plus moderne, minimaliste et épuré et en mettant des animation complexe et professionnel.
64cab0c verified
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VisionNova | Design Moderne & Épuré</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-white text-gray-900 font-sans">
<custom-navbar></custom-navbar>
<main>
<!-- Hero Section -->
<section class="relative min-h-screen flex items-center justify-center overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-br from-blue-50 to-indigo-100 transform -skew-y-6 scale-125"></div>
<div class="relative z-10 text-center px-6 max-w-4xl mx-auto">
<h1 class="text-6xl md:text-8xl font-bold mb-8 tracking-tight opacity-0 animate-fade-in-up">
Vision<span class="text-blue-600">Nova</span>
</h1>
<p class="text-xl md:text-2xl text-gray-600 mb-12 opacity-0 animate-fade-in-up animation-delay-300">
Redéfinir l'expérience digitale avec élégance et innovation
</p>
<div class="opacity-0 animate-fade-in-up animation-delay-600">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-4 rounded-full font-semibold transition-all duration-300 transform hover:scale-105 shadow-lg hover:shadow-xl">
Découvrir
</button>
</div>
</div>
<!-- Floating Elements -->
<div class="absolute top-20 left-10 w-20 h-20 bg-blue-200 rounded-full opacity-30 animate-float"></div>
<div class="absolute bottom-40 right-20 w-16 h-16 bg-indigo-300 rounded-full opacity-40 animate-float animation-delay-1000"></div>
<div class="absolute top-1/3 right-1/4 w-12 h-12 bg-purple-200 rounded-full opacity-50 animate-float animation-delay-2000"></div>
</section>
<!-- Features Section -->
<section class="py-20 px-6 bg-white">
<div class="max-w-7xl mx-auto">
<h2 class="text-4xl md:text-5xl font-bold text-center mb-16 opacity-0 animate-fade-in">
Excellence Digitale
</h2>
<div class="grid md:grid-cols-3 gap-12">
<!-- Feature 1 -->
<div class="group text-center opacity-0 animate-slide-in-left">
<div class="w-20 h-20 mx-auto mb-6 bg-gradient-to-r from-blue-500 to-purple-600 rounded-2xl flex items-center justify-center transform group-hover:scale-110 transition-all duration-300">
<i data-feather="layout" class="text-white w-10 h-10"></i>
</div>
<h3 class="text-xl font-semibold mb-4">Design Intuitif</h3>
<p class="text-gray-600">Interfaces pensées pour une expérience utilisateur fluide et naturelle</p>
</div>
<!-- Feature 2 -->
<div class="group text-center opacity-0 animate-slide-in-up animation-delay-200">
<div class="w-20 h-20 mx-auto mb-6 bg-gradient-to-r from-green-500 to-teal-600 rounded-2xl flex items-center justify-center transform group-hover:scale-110 transition-all duration-300">
<i data-feather="zap" class="text-white w-10 h-10"></i>
</div>
<h3 class="text-xl font-semibold mb-4">Performance</h3>
<p class="text-gray-600">Optimisations avancées pour des temps de chargement instantanés</p>
</div>
<!-- Feature 3 -->
<div class="group text-center opacity-0 animate-slide-in-right animation-delay-400">
<div class="w-20 h-20 mx-auto mb-6 bg-gradient-to-r from-orange-500 to-pink-600 rounded-2xl flex items-center justify-center transform group-hover:scale-110 transition-all duration-300">
<i data-feather="code" class="text-white w-10 h-10"></i>
</div>
<h3 class="text-xl font-semibold mb-4">Innovation</h3>
<p class="text-gray-600">Technologies de pointe pour des solutions avant-gardistes</p>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-6">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div class="text-center opacity-0 animate-count-up">
<div class="text-4xl md:text-6xl font-bold text-blue-600 mb-2" data-count="150">0</div>
<div class="text-gray-600">Projets Réalisés</div>
</div>
<div class="text-center opacity-0 animate-count-up animation-delay-300">
<div class="text-4xl md:text-6xl font-bold text-green-600 mb-2" data-count="98">0</div>
<div class="text-gray-600">Clients Satisfaits</div>
</div>
<div class="text-center opacity-0 animate-count-up animation-delay-600">
<div class="text-4xl md:text-6xl font-bold text-purple-600 mb-2" data-count="24">0</div>
<div class="text-gray-600">Prix Remportés</div>
</div>
<div class="text-center opacity-0 animate-count-up animation-delay-900">
<div class="text-4xl md:text-6xl font-bold text-orange-600 mb-2" data-count="5">0</div>
<div class="text-gray-600">Années d'Expertise</div>
</div>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>