Spaces:
Running
Running
| <html lang="fr"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Site Moderne Fonctionnel</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"> | |
| <style> | |
| /* Custom CSS for elements that can't be done with Tailwind */ | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
| } | |
| .card-hover:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); | |
| } | |
| .smooth-transition { | |
| transition: all 0.3s ease; | |
| } | |
| #mobile-menu { | |
| max-height: 0; | |
| overflow: hidden; | |
| transition: max-height 0.3s ease-out; | |
| } | |
| #mobile-menu.open { | |
| max-height: 500px; | |
| } | |
| </style> | |
| </head> | |
| <body class="font-sans antialiased text-gray-800"> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-md sticky top-0 z-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex justify-between items-center py-4"> | |
| <div class="flex items-center"> | |
| <a href="#" class="text-2xl font-bold text-indigo-600">IAetAUTOMATES</a> | |
| </div> | |
| <!-- Desktop Menu --> | |
| <div class="hidden md:flex space-x-8"> | |
| <a href="#home" class="text-indigo-600 font-medium hover:text-indigo-800 smooth-transition">Accueil</a> | |
| <a href="#features" class="text-gray-600 hover:text-indigo-600 smooth-transition">Fonctionnalités</a> | |
| <a href="#tools" class="text-gray-600 hover:text-indigo-600 smooth-transition">Outils</a> | |
| <a href="#services" class="text-gray-600 hover:text-indigo-600 smooth-transition">Services</a> | |
| <a href="#contact" class="text-gray-600 hover:text-indigo-600 smooth-transition">Contact</a> | |
| </div> | |
| <div class="hidden md:block"> | |
| <a href="tel:+22796471103" class="bg-indigo-600 text-white px-4 py-2 rounded-md hover:bg-indigo-700 smooth-transition inline-block"> | |
| Appeler | |
| </a> | |
| </div> | |
| <!-- Mobile menu button --> | |
| <div class="md:hidden"> | |
| <button id="menu-toggle" class="text-gray-600 focus:outline-none"> | |
| <i class="fas fa-bars text-2xl"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Mobile Menu --> | |
| <div id="mobile-menu" class="md:hidden"> | |
| <div class="px-2 pt-2 pb-4 space-y-1"> | |
| <a href="#home" class="block px-3 py-2 rounded-md text-base font-medium text-indigo-600 bg-indigo-50">Accueil</a> | |
| <a href="#features" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:text-indigo-600 hover:bg-indigo-50">Fonctionnalités</a> | |
| <a href="#tools" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:text-indigo-600 hover:bg-indigo-50">Outils</a> | |
| <a href="#services" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:text-indigo-600 hover:bg-indigo-50">Services</a> | |
| <a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:text-indigo-600 hover:bg-indigo-50">Contact</a> | |
| <a href="tel:+22796471103" class="w-full mt-2 bg-indigo-600 text-white px-4 py-2 rounded-md hover:bg-indigo-700 smooth-transition inline-block text-center"> | |
| Appeler | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section id="home" class="gradient-bg text-white py-20"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0"> | |
| <h1 class="text-4xl md:text-5xl font-bold mb-6">Solution moderne pour vos besoins</h1> | |
| <p class="text-xl mb-8">Découvrez notre plateforme innovante qui va révolutionner votre façon de travailler.</p> | |
| <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
| <button class="bg-white text-indigo-600 px-6 py-3 rounded-md font-medium hover:bg-gray-100 smooth-transition"> | |
| Commencer gratuitement | |
| </button> | |
| <button class="border-2 border-white text-white px-6 py-3 rounded-md font-medium hover:bg-white hover:text-indigo-600 smooth-transition"> | |
| Voir la démo | |
| </button> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2"> | |
| <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Hero Image" class="rounded-lg shadow-xl w-full h-auto"> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section id="features" class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">Fonctionnalités puissantes</h2> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto">Nos outils innovants sont conçus pour vous aider à atteindre vos objectifs plus rapidement.</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Feature 1 --> | |
| <div class="bg-white p-8 rounded-lg shadow-md card-hover smooth-transition"> | |
| <div class="text-indigo-600 mb-4"> | |
| <i class="fas fa-bolt text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Performance optimisée</h3> | |
| <p class="text-gray-600">Notre technologie de pointe garantit des temps de chargement ultra-rapides pour une expérience utilisateur fluide.</p> | |
| </div> | |
| <!-- Feature 2 --> | |
| <div class="bg-white p-8 rounded-lg shadow-md card-hover smooth-transition"> | |
| <div class="text-indigo-600 mb-4"> | |
| <i class="fas fa-shield-alt text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Sécurité renforcée</h3> | |
| <p class="text-gray-600">Protection des données avancée avec chiffrement de bout en bout et authentification multi-facteurs.</p> | |
| </div> | |
| <!-- Feature 3 --> | |
| <div class="bg-white p-8 rounded-lg shadow-md card-hover smooth-transition"> | |
| <div class="text-indigo-600 mb-4"> | |
| <i class="fas fa-sync-alt text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Synchronisation en temps réel</h3> | |
| <p class="text-gray-600">Toutes vos modifications sont synchronisées instantanément sur tous vos appareils.</p> | |
| </div> | |
| <!-- Feature 4 --> | |
| <div class="bg-white p-8 rounded-lg shadow-md card-hover smooth-transition"> | |
| <div class="text-indigo-600 mb-4"> | |
| <i class="fas fa-chart-line text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Analyses approfondies</h3> | |
| <p class="text-gray-600">Tableaux de bord personnalisables avec des indicateurs clés pour suivre vos performances.</p> | |
| </div> | |
| <!-- Feature 5 --> | |
| <div class="bg-white p-8 rounded-lg shadow-md card-hover smooth-transition"> | |
| <div class="text-indigo-600 mb-4"> | |
| <i class="fas fa-users text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Collaboration d'équipe</h3> | |
| <p class="text-gray-600">Outils intégrés pour travailler efficacement avec vos collègues, où qu'ils soient.</p> | |
| </div> | |
| <!-- Feature 6 --> | |
| <div class="bg-white p-8 rounded-lg shadow-md card-hover smooth-transition"> | |
| <div class="text-indigo-600 mb-4"> | |
| <i class="fas fa-cog text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Personnalisation avancée</h3> | |
| <p class="text-gray-600">Adaptez l'interface et les fonctionnalités à vos besoins spécifiques pour une expérience sur mesure.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Outils Section --> | |
| <section id="tools" class="py-20 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">Nos Outils Puissants</h2> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto">Découvrez nos outils spécialement conçus pour booster votre productivité.</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Outil 1 - Performance --> | |
| <div class="bg-gray-50 p-8 rounded-lg shadow-md card-hover smooth-transition"> | |
| <div class="text-indigo-600 mb-4"> | |
| <i class="fas fa-tachometer-alt text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Optimisateur de Performance</h3> | |
| <p class="text-gray-600">Analyse et optimise automatiquement les performances de votre système pour des résultats ultra-rapides.</p> | |
| </div> | |
| <!-- Outil 2 - Sécurité --> | |
| <div class="bg-gray-50 p-8 rounded-lg shadow-md card-hover smooth-transition"> | |
| <div class="text-indigo-600 mb-4"> | |
| <i class="fas fa-lock text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Protecteur de Données</h3> | |
| <p class="text-gray-600">Système de sécurité avancé avec chiffrement AES-256 et protection contre les attaques.</p> | |
| </div> | |
| <!-- Outil 3 - Synchronisation --> | |
| <div class="bg-gray-50 p-8 rounded-lg shadow-md card-hover smooth-transition"> | |
| <div class="text-indigo-600 mb-4"> | |
| <i class="fas fa-cloud-upload-alt text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Synchronisateur Cloud</h3> | |
| <p class="text-gray-600">Synchronise instantanément vos données entre tous vos appareils et le cloud.</p> | |
| </div> | |
| <!-- Outil 4 - Analyses --> | |
| <div class="bg-gray-50 p-8 rounded-lg shadow-md card-hover smooth-transition"> | |
| <div class="text-indigo-600 mb-4"> | |
| <i class="fas fa-chart-pie text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Analyseur de Données</h3> | |
| <p class="text-gray-600">Transforme vos données brutes en insights actionnables avec des visualisations claires.</p> | |
| </div> | |
| <!-- Outil 5 - Collaboration --> | |
| <div class="bg-gray-50 p-8 rounded-lg shadow-md card-hover smooth-transition"> | |
| <div class="text-indigo-600 mb-4"> | |
| <i class="fas fa-users-cog text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Espace de Travail Collaboratif</h3> | |
| <p class="text-gray-600">Plateforme unifiée pour travailler en équipe avec chat, partage de fichiers et gestion de tâches.</p> | |
| </div> | |
| <!-- Outil 6 - Personnalisation --> | |
| <div class="bg-gray-50 p-8 rounded-lg shadow-md card-hover smooth-transition"> | |
| <div class="text-indigo-600 mb-4"> | |
| <i class="fas fa-sliders-h text-4xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Personnalisateur Avancé</h3> | |
| <p class="text-gray-600">Adaptez l'interface et les workflows à vos besoins spécifiques avec des options avancées.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Services Section --> | |
| <section id="services" class="py-20"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">Nos Services</h2> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto">Nous offrons une gamme complète de services pour répondre à tous vos besoins.</p> | |
| </div> | |
| <div class="flex flex-col lg:flex-row gap-8"> | |
| <div class="lg:w-1/2"> | |
| <img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Services Image" class="rounded-lg shadow-lg w-full"> | |
| </div> | |
| <div class="lg:w-1/2"> | |
| <div class="space-y-8"> | |
| <!-- Service 1 --> | |
| <div class="flex"> | |
| <div class="flex-shrink-0 mr-4"> | |
| <div class="bg-indigo-100 text-indigo-600 rounded-full w-12 h-12 flex items-center justify-center"> | |
| <i class="fas fa-laptop-code text-xl"></i> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold mb-2">Développement Web</h3> | |
| <p class="text-gray-600">Création de sites web modernes, responsives et performants avec les dernières technologies.</p> | |
| </div> | |
| </div> | |
| <!-- Service 2 --> | |
| <div class="flex"> | |
| <div class="flex-shrink-0 mr-4"> | |
| <div class="bg-indigo-100 text-indigo-600 rounded-full w-12 h-12 flex items-center justify-center"> | |
| <i class="fas fa-mobile-alt text-xl"></i> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold mb-2">Applications Mobiles</h3> | |
| <p class="text-gray-600">Développement d'applications natives et hybrides pour iOS et Android.</p> | |
| </div> | |
| </div> | |
| <!-- Service 3 --> | |
| <div class="flex"> | |
| <div class="flex-shrink-0 mr-4"> | |
| <div class="bg-indigo-100 text-indigo-600 rounded-full w-12 h-12 flex items-center justify-center"> | |
| <i class="fas fa-search-dollar text-xl"></i> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold mb-2">SEO & Marketing Digital</h3> | |
| <p class="text-gray-600">Stratégies de référencement et marketing digital pour augmenter votre visibilité en ligne.</p> | |
| </div> | |
| </div> | |
| <!-- Service 4 --> | |
| <div class="flex"> | |
| <div class="flex-shrink-0 mr-4"> | |
| <div class="bg-indigo-100 text-indigo-600 rounded-full w-12 h-12 flex items-center justify-center"> | |
| <i class="fas fa-cloud text-xl"></i> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold mb-2">Hébergement Cloud</h3> | |
| <p class="text-gray-600">Solutions d'hébergement sécurisées et évolutives pour garantir la disponibilité de vos services.</p> | |
| </div> | |
| </div> | |
| <!-- Service 5 --> | |
| <div class="flex"> | |
| <div class="flex-shrink-0 mr-4"> | |
| <div class="bg-indigo-100 text-indigo-600 rounded-full w-12 h-12 flex items-center justify-center"> | |
| <i class="fas fa-robot text-xl"></i> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold mb-2">Consultation pour intégration de l'IA</h3> | |
| <p class="text-gray-600">Expertise en intelligence artificielle pour optimiser vos processus métiers.</p> | |
| </div> | |
| </div> | |
| <!-- Service 6 --> | |
| <div class="flex"> | |
| <div class="flex-shrink-0 mr-4"> | |
| <div class="bg-indigo-100 text-indigo-600 rounded-full w-12 h-12 flex items-center justify-center"> | |
| <i class="fas fa-cogs text-xl"></i> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold mb-2">Automatisation des processus</h3> | |
| <p class="text-gray-600">Solutions sur mesure pour automatiser vos workflows et gagner en efficacité.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials Section --> | |
| <section class="py-20"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">Ce que disent nos clients</h2> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto">Découvrez les témoignages de nos clients satisfaits.</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <!-- Testimonial 1 --> | |
| <div class="bg-white p-8 rounded-lg shadow-md"> | |
| <div class="flex items-center mb-4"> | |
| <div class="text-yellow-400 mr-2"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 mb-6">"Cette plateforme a complètement transformé notre façon de travailler. L'interface est intuitive et les fonctionnalités sont puissantes."</p> | |
| <div class="flex items-center"> | |
| <img src="https://via.placeholder.com/50" alt="Client" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">MAMOUDOU ISSOUFOU</h4> | |
| <p class="text-gray-600 text-sm">DG</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Testimonial 2 --> | |
| <div class="bg-white p-8 rounded-lg shadow-md"> | |
| <div class="flex items-center mb-4"> | |
| <div class="text-yellow-400 mr-2"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 mb-6">"Le support client est exceptionnel. Ils ont répondu à toutes nos questions et nous ont aidés à tirer le meilleur parti de la plateforme."</p> | |
| <div class="flex items-center"> | |
| <img src="https://via.placeholder.com/50" alt="Client" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Hadizatou SOULEY</h4> | |
| <p class="text-gray-600 text-sm">Directrice Marketing</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Testimonial 3 --> | |
| <div class="bg-white p-8 rounded-lg shadow-md"> | |
| <div class="flex items-center mb-4"> | |
| <div class="text-yellow-400 mr-2"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star-half-alt"></i> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 mb-6">"Nous avons augmenté notre productivité de 40% depuis que nous utilisons cette solution. Je la recommande vivement à toutes les entreprises."</p> | |
| <div class="flex items-center"> | |
| <img src="https://via.placeholder.com/50" alt="Client" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Soumaila Halidou</h4> | |
| <p class="text-gray-600 text-sm">Technicien</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-20 bg-indigo-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">Contactez-nous</h2> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto">Nous sommes là pour répondre à toutes vos questions.</p> | |
| </div> | |
| <div class="flex flex-col lg:flex-row gap-12 max-w-6xl mx-auto"> | |
| <div class="lg:w-1/2"> | |
| <form action="https://formsubmit.co/delvissodelv@gmail.com" method="POST" class="bg-white p-8 rounded-lg shadow-md"> | |
| <input type="hidden" name="_subject" value="Nouveau message de contact"> | |
| <input type="hidden" name="_template" value="table"> | |
| <div class="mb-6"> | |
| <label for="name" class="block text-gray-700 font-medium mb-2">Nom complet</label> | |
| <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500"> | |
| </div> | |
| <div class="mb-6"> | |
| <label for="email" class="block text-gray-700 font-medium mb-2">Adresse email</label> | |
| <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500"> | |
| </div> | |
| <div class="mb-6"> | |
| <label for="subject" class="block text-gray-700 font-medium mb-2">Sujet</label> | |
| <input type="text" id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500"> | |
| </div> | |
| <div class="mb-6"> | |
| <label for="message" class="block text-gray-700 font-medium mb-2">Message</label> | |
| <textarea id="message" rows="5" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500"></textarea> | |
| </div> | |
| <button type="submit" class="w-full bg-indigo-600 text-white py-3 rounded-md font-medium hover:bg-indigo-700 smooth-transition"> | |
| Envoyer le message | |
| </button> | |
| </form> | |
| </div> | |
| <div class="lg:w-1/2"> | |
| <div class="bg-white p-8 rounded-lg shadow-md h-full"> | |
| <h3 class="text-2xl font-bold mb-6">Informations de contact</h3> | |
| <div class="space-y-6"> | |
| <div class="flex"> | |
| <div class="flex-shrink-0 text-indigo-600 mr-4"> | |
| <i class="fas fa-map-marker-alt text-2xl"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-1">Adresse</h4> | |
| <p class="text-gray-600">Avenue du président Karl Carsten Niamey Niger</p> | |
| </div> | |
| </div> | |
| <div class="flex"> | |
| <div class="flex-shrink-0 text-indigo-600 mr-4"> | |
| <i class="fas fa-phone-alt text-2xl"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-1">Téléphone</h4> | |
| <p class="text-gray-600">+227 96 47 11 03</p> | |
| </div> | |
| </div> | |
| <div class="flex"> | |
| <div class="flex-shrink-0 text-indigo-600 mr-4"> | |
| <i class="fas fa-envelope text-2xl"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-1">Email</h4> | |
| <p class="text-gray-600">delvissodelv@gmail.com</p> | |
| <p class="text-gray-600">boubacardaouda476@gmail.com</p> | |
| </div> | |
| </div> | |
| <div class="flex"> | |
| <div class="flex-shrink-0 text-indigo-600 mr-4"> | |
| <i class="fas fa-clock text-2xl"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-1">Heures d'ouverture</h4> | |
| <p class="text-gray-600">Lundi - Vendredi: 9h - 18h</p> | |
| <p class="text-gray-600">Samedi: 10h - 14h</p> | |
| <p class="text-gray-600">Dimanche: Fermé</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-8"> | |
| <h4 class="font-bold mb-4">Suivez-nous</h4> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="bg-indigo-100 text-indigo-600 w-10 h-10 rounded-full flex items-center justify-center hover:bg-indigo-200 smooth-transition"> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| <a href="#" class="bg-indigo-100 text-indigo-600 w-10 h-10 rounded-full flex items-center justify-center hover:bg-indigo-200 smooth-transition"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="bg-indigo-100 text-indigo-600 w-10 h-10 rounded-full flex items-center justify-center hover:bg-indigo-200 smooth-transition"> | |
| <i class="fab fa-linkedin-in"></i> | |
| </a> | |
| <a href="#" class="bg-indigo-100 text-indigo-600 w-10 h-10 rounded-full flex items-center justify-center hover:bg-indigo-200 smooth-transition"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Newsletter Section --> | |
| <section class="py-16 bg-indigo-600 text-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-4xl mx-auto text-center"> | |
| <h2 class="text-3xl font-bold mb-4">Abonnez-vous à notre newsletter</h2> | |
| <p class="text-xl mb-8">Recevez les dernières actualités, conseils et offres spéciales directement dans votre boîte mail.</p> | |
| <form action="https://formsubmit.co/delvissodelv@gmail.com" method="POST" class="flex flex-col sm:flex-row gap-4 max-w-xl mx-auto"> | |
| <input type="hidden" name="_subject" value="Nouvel abonné newsletter"> | |
| <input type="hidden" name="_template" value="table"> | |
| <input type="email" name="email" placeholder="Votre adresse email" class="flex-grow px-4 py-3 rounded-md focus:outline-none text-gray-800" required> | |
| <button type="submit" class="bg-white text-indigo-600 px-6 py-3 rounded-md font-medium hover:bg-gray-100 smooth-transition whitespace-nowrap"> | |
| S'abonner | |
| </button> | |
| </form> | |
| <p class="text-sm mt-4 text-indigo-200">Nous ne partagerons jamais votre email avec des tiers.</p> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white pt-16 pb-8"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-12 mb-12"> | |
| <!-- Column 1 --> | |
| <div> | |
| <h3 class="text-xl font-bold mb-4">À propos</h3> | |
| <p class="text-gray-400 mb-4">Nous sommes une entreprise innovante dédiée à fournir les meilleures solutions technologiques à nos clients.</p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-white smooth-transition"> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white smooth-transition"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white smooth-transition"> | |
| <i class="fab fa-linkedin-in"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white smooth-transition"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <!-- Column 2 --> | |
| <div> | |
| <h3 class="text-xl font-bold mb-4">Liens rapides</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#home" class="text-gray-400 hover:text-white smooth-transition">Accueil</a></li> | |
| <li><a href="#features" class="text-gray-400 hover:text-white smooth-transition">Fonctionnalités</a></li> | |
| <li><a href="#services" class="text-gray-400 hover:text-white smooth-transition">Services</a></li> | |
| <li><a href="#contact" class="text-gray-400 hover:text-white smooth-transition">Contact</a></li> | |
| </ul> | |
| </div> | |
| <!-- Column 3 --> | |
| <div> | |
| <h3 class="text-xl font-bold mb-4">Services</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white smooth-transition">Développement Web</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white smooth-transition">Applications Mobiles</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white smooth-transition">SEO & Marketing Digital</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white smooth-transition">Hébergement Cloud</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white smooth-transition">Consultation IT</a></li> | |
| </ul> | |
| </div> | |
| <!-- Column 4 --> | |
| <div> | |
| <h3 class="text-xl font-bold mb-4">Contact</h3> | |
| <ul class="space-y-2"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-map-marker-alt text-indigo-400 mr-2 mt-1"></i> | |
| <span class="text-gray-400">Avenue du président Karl Carsten Niamey Niger</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-phone-alt text-indigo-400 mr-2"></i> | |
| <span class="text-gray-400">+227 96 47 11 03</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-envelope text-indigo-400 mr-2"></i> | |
| <span class="text-gray-400">delvissodelv@gmail.com</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-400 mb-4 md:mb-0">© 2023 Nom de l'entreprise. Tous droits réservés.</p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white smooth-transition">Politique de confidentialité</a> | |
| <a href="#" class="text-gray-400 hover:text-white smooth-transition">Conditions d'utilisation</a> | |
| <a href="#" class="text-gray-400 hover:text-white smooth-transition">Mentions légales</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <!-- Back to Top Button --> | |
| <button id="back-to-top" class="fixed bottom-8 right-8 bg-indigo-600 text-white w-12 h-12 rounded-full shadow-lg flex items-center justify-center hidden"> | |
| <i class="fas fa-arrow-up"></i> | |
| </button> | |
| <script> | |
| // Mobile menu toggle | |
| const menuToggle = document.getElementById('menu-toggle'); | |
| const mobileMenu = document.getElementById('mobile-menu'); | |
| menuToggle.addEventListener('click', () => { | |
| mobileMenu.classList.toggle('open'); | |
| }); | |
| // Close mobile menu when clicking on a link | |
| const mobileLinks = document.querySelectorAll('#mobile-menu a'); | |
| mobileLinks.forEach(link => { | |
| link.addEventListener('click', () => { | |
| mobileMenu.classList.remove('open'); | |
| }); | |
| }); | |
| // Back to top button | |
| const backToTopButton = document.getElementById('back-to-top'); | |
| window.addEventListener('scroll', () => { | |
| if (window.pageYOffset > 300) { | |
| backToTopButton.classList.remove('hidden'); | |
| } else { | |
| backToTopButton.classList.add('hidden'); | |
| } | |
| }); | |
| backToTopButton.addEventListener('click', () => { | |
| window.scrollTo({ | |
| top: 0, | |
| behavior: 'smooth' | |
| }); | |
| }); | |
| // Smooth scrolling for anchor links | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function(e) { | |
| e.preventDefault(); | |
| const targetId = this.getAttribute('href'); | |
| if (targetId === '#') return; | |
| const targetElement = document.querySelector(targetId); | |
| if (targetElement) { | |
| window.scrollTo({ | |
| top: targetElement.offsetTop - 80, | |
| behavior: 'smooth' | |
| }); | |
| } | |
| }); | |
| }); | |
| // Form submission handled by FormSubmit.co | |
| </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=delv2000/iaetautomates" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |