Spaces:
Running
Running
| <html lang="fr"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>CAMPUS DPC - Solution clé en main pour vos formations DPC</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> | |
| .hero-gradient { | |
| background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%); | |
| } | |
| .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); | |
| } | |
| .how-it-works-step::before { | |
| content: ""; | |
| position: absolute; | |
| top: 0; | |
| left: 24px; | |
| height: 100%; | |
| width: 2px; | |
| background-color: #3b82f6; | |
| } | |
| .how-it-works-step:last-child::before { | |
| display: none; | |
| } | |
| .floating-animation { | |
| animation: float 6s ease-in-out infinite; | |
| } | |
| @keyframes float { | |
| 0% { transform: translateY(0px); } | |
| 50% { transform: translateY(-15px); } | |
| 100% { transform: translateY(0px); } | |
| } | |
| </style> | |
| </head> | |
| <body class="font-sans antialiased text-gray-800"> | |
| <!-- Header --> | |
| <header class="bg-white shadow-sm sticky top-0 z-50"> | |
| <div class="container mx-auto px-4 py-4 flex justify-between items-center"> | |
| <div class="flex items-center"> | |
| <div class="w-12 h-12 bg-blue-600 rounded-lg flex items-center justify-center mr-3"> | |
| <i class="fas fa-graduation-cap text-white text-2xl"></i> | |
| </div> | |
| <h1 class="text-xl font-bold text-blue-800">CAMPUS <span class="text-blue-600">DPC</span></h1> | |
| </div> | |
| <nav class="hidden md:flex space-x-8"> | |
| <a href="#features" class="font-medium text-gray-600 hover:text-blue-600 transition">Fonctionnalités</a> | |
| <a href="#how-it-works" class="font-medium text-gray-600 hover:text-blue-600 transition">Comment ça marche</a> | |
| <a href="#benefits" class="font-medium text-gray-600 hover:text-blue-600 transition">Avantages</a> | |
| <a href="#contact" class="font-medium text-gray-600 hover:text-blue-600 transition">Contact</a> | |
| </nav> | |
| <button class="md:hidden text-gray-600"> | |
| <i class="fas fa-bars text-2xl"></i> | |
| </button> | |
| </div> | |
| </header> | |
| <!-- Hero Section --> | |
| <section class="hero-gradient text-white py-20"> | |
| <div class="container mx-auto px-4 flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-12 md:mb-0"> | |
| <h2 class="text-4xl md:text-5xl font-bold mb-6">Solution clé en main pour vos sessions DPC</h2> | |
| <p class="text-xl mb-8 opacity-90">Mettez en ligne vos formations DPC en 1 jour seulement et profitez d'un suivi complet de vos apprenants et de la facturation.</p> | |
| <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
| <a href="#contact" class="bg-white text-blue-600 font-bold py-3 px-8 rounded-lg hover:bg-gray-100 transition duration-300 text-center">Demander une démo</a> | |
| <a href="#how-it-works" class="border-2 border-white text-white font-bold py-3 px-8 rounded-lg hover:bg-white hover:bg-opacity-10 transition duration-300 text-center">En savoir plus</a> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 flex justify-center"> | |
| <div class="relative w-full max-w-md"> | |
| <div class="absolute -top-10 -left-10 w-32 h-32 bg-blue-400 rounded-full opacity-20"></div> | |
| <div class="absolute -bottom-10 -right-10 w-32 h-32 bg-blue-400 rounded-full opacity-20"></div> | |
| <img src="https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80" alt="Formation en ligne" class="rounded-xl shadow-2xl relative z-10 floating-animation"> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Trust Badges --> | |
| <section class="bg-gray-50 py-8"> | |
| <div class="container mx-auto px-4"> | |
| <p class="text-center text-gray-500 mb-6">Utilisé et approuvé par des centaines de professionnels de santé</p> | |
| <div class="flex flex-wrap justify-center items-center gap-8 md:gap-16"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 text-2xl mr-2"></i> | |
| <span class="font-medium">Certifié ANDPC</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-shield-alt text-blue-500 text-2xl mr-2"></i> | |
| <span class="font-medium">Hébergement sécurisé</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-clock text-purple-500 text-2xl mr-2"></i> | |
| <span class="font-medium">Mise en ligne en 24h</span> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section id="features" class="py-20 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Tout ce dont vous avez besoin pour vos formations DPC</h2> | |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto">Une plateforme complète pour gérer facilement vos actions de Développement Professionnel Continu</p> | |
| </div> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Feature 1 --> | |
| <div class="bg-white rounded-xl shadow-lg p-8 transition duration-300 feature-card"> | |
| <div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i class="fas fa-laptop text-blue-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Formations en ligne</h3> | |
| <p class="text-gray-600">Proposez vos actions DPC en format digital à vos clients avec une interface intuitive et moderne.</p> | |
| </div> | |
| <!-- Feature 2 --> | |
| <div class="bg-white rounded-xl shadow-lg p-8 transition duration-300 feature-card"> | |
| <div class="w-14 h-14 bg-green-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i class="fas fa-chart-line text-green-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Suivi des apprenants</h3> | |
| <p class="text-gray-600">Visualisez en un coup d'œil la progression de chaque participant et identifiez rapidement ceux qui ont besoin d'accompagnement.</p> | |
| </div> | |
| <!-- Feature 3 --> | |
| <div class="bg-white rounded-xl shadow-lg p-8 transition duration-300 feature-card"> | |
| <div class="w-14 h-14 bg-purple-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i class="fas fa-file-invoice-dollar text-purple-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Facturation simplifiée</h3> | |
| <p class="text-gray-600">Recevez automatiquement tous les documents nécessaires pour votre facturation auprès de l'ANDPC.</p> | |
| </div> | |
| <!-- Feature 4 --> | |
| <div class="bg-white rounded-xl shadow-lg p-8 transition duration-300 feature-card"> | |
| <div class="w-14 h-14 bg-yellow-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i class="fas fa-cogs text-yellow-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Configuration rapide</h3> | |
| <p class="text-gray-600">Notre équipe paramètre vos cours à partir de vos ressources pour une mise en ligne express.</p> | |
| </div> | |
| <!-- Feature 5 --> | |
| <div class="bg-white rounded-xl shadow-lg p-8 transition duration-300 feature-card"> | |
| <div class="w-14 h-14 bg-red-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i class="fas fa-users text-red-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Espaces dédiés</h3> | |
| <p class="text-gray-600">Accès séparés pour formateurs et apprenants avec suivi des unités DPC complété.</p> | |
| </div> | |
| <!-- Feature 6 --> | |
| <div class="bg-white rounded-xl shadow-lg p-8 transition duration-300 feature-card"> | |
| <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6"> | |
| <i class="fas fa-rocket text-indigo-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Plug N Play</h3> | |
| <p class="text-gray-600">En 1 jour seulement, votre cours est en ligne et vous pouvez commencer à former immédiatement.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- How It Works Section --> | |
| <section id="how-it-works" class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Comment fonctionne CAMPUS DPC ?</h2> | |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto">Une solution simple et efficace pour vos formations DPC</p> | |
| </div> | |
| <div class="max-w-3xl mx-auto relative"> | |
| <!-- Step 1 --> | |
| <div class="how-it-works-step relative pl-16 pb-12"> | |
| <div class="absolute left-0 top-0 w-10 h-10 rounded-full bg-blue-600 flex items-center justify-center text-white font-bold z-10">1</div> | |
| <div class="bg-white p-6 rounded-lg shadow-md"> | |
| <h3 class="text-xl font-bold mb-3">Transmettez vos ressources</h3> | |
| <p class="text-gray-600">Envoyez-nous vos supports de formation (présentations, documents, vidéos...) que vous utilisez habituellement.</p> | |
| </div> | |
| </div> | |
| <!-- Step 2 --> | |
| <div class="how-it-works-step relative pl-16 pb-12"> | |
| <div class="absolute left-0 top-0 w-10 h-10 rounded-full bg-blue-600 flex items-center justify-center text-white font-bold z-10">2</div> | |
| <div class="bg-white p-6 rounded-lg shadow-md"> | |
| <h3 class="text-xl font-bold mb-3">Nous paramétrons votre cours</h3> | |
| <p class="text-gray-600">Notre équipe technique intègre vos ressources sur notre plateforme ETICEO et configure les espaces formateur et apprenant.</p> | |
| </div> | |
| </div> | |
| <!-- Step 3 --> | |
| <div class="how-it-works-step relative pl-16 pb-12"> | |
| <div class="absolute left-0 top-0 w-10 h-10 rounded-full bg-blue-600 flex items-center justify-center text-white font-bold z-10">3</div> | |
| <div class="bg-white p-6 rounded-lg shadow-md"> | |
| <h3 class="text-xl font-bold mb-3">Votre formation est en ligne</h3> | |
| <p class="text-gray-600">En 24 heures seulement, votre cours est disponible et vous pouvez commencer à former vos participants.</p> | |
| </div> | |
| </div> | |
| <!-- Step 4 --> | |
| <div class="how-it-works-step relative pl-16"> | |
| <div class="absolute left-0 top-0 w-10 h-10 rounded-full bg-blue-600 flex items-center justify-center text-white font-bold z-10">4</div> | |
| <div class="bg-white p-6 rounded-lg shadow-md"> | |
| <h3 class="text-xl font-bold mb-3">Suivi et facturation</h3> | |
| <p class="text-gray-600">Accédez aux rapports de progression et recevez automatiquement les documents de facturation pour l'ANDPC.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Benefits Section --> | |
| <section id="benefits" class="py-20 bg-blue-600 text-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Les avantages CAMPUS DPC</h2> | |
| <p class="text-xl opacity-90 max-w-3xl mx-auto">Pourquoi choisir notre solution pour vos formations DPC ?</p> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <div class="bg-white bg-opacity-10 p-8 rounded-xl backdrop-blur-sm"> | |
| <div class="w-12 h-12 bg-white bg-opacity-20 rounded-lg flex items-center justify-center mb-6"> | |
| <i class="fas fa-bolt text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Rapidité</h3> | |
| <p>Mise en ligne de vos formations en seulement 24 heures, sans effort technique de votre part.</p> | |
| </div> | |
| <div class="bg-white bg-opacity-10 p-8 rounded-xl backdrop-blur-sm"> | |
| <div class="w-12 h-12 bg-white bg-opacity-20 rounded-lg flex items-center justify-center mb-6"> | |
| <i class="fas fa-eye text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Transparence</h3> | |
| <p>Suivi en temps réel de la progression de vos apprenants et accès aux statistiques détaillées.</p> | |
| </div> | |
| <div class="bg-white bg-opacity-10 p-8 rounded-xl backdrop-blur-sm"> | |
| <div class="w-12 h-12 bg-white bg-opacity-20 rounded-lg flex items-center justify-center mb-6"> | |
| <i class="fas fa-file-invoice text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Gestion simplifiée</h3> | |
| <p>Documents de facturation DPC générés automatiquement, prêts à être déposés sur le site de l'ANDPC.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials --> | |
| <section class="py-20 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Ils nous font confiance</h2> | |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto">Découvrez ce que nos clients disent de CAMPUS DPC</p> | |
| </div> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Testimonial 1 --> | |
| <div class="bg-gray-50 p-8 rounded-xl"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center mr-4"> | |
| <i class="fas fa-user-md text-blue-600 text-xl"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Dr. Martin Dupont</h4> | |
| <p class="text-sm text-gray-500">Médecin généraliste</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-700 italic">"Grâce à CAMPUS DPC, j'ai pu mettre en ligne mes formations en quelques heures seulement. La plateforme est intuitive et le suivi des apprenants très précis."</p> | |
| <div class="mt-4 text-yellow-400"> | |
| <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> | |
| <!-- Testimonial 2 --> | |
| <div class="bg-gray-50 p-8 rounded-xl"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-full bg-green-100 flex items-center justify-center mr-4"> | |
| <i class="fas fa-user-nurse text-green-600 text-xl"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Sophie Leroy</h4> | |
| <p class="text-sm text-gray-500">Infirmière formatrice</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-700 italic">"Les documents de facturation fournis automatiquement m'ont fait gagner un temps précieux. Plus besoin de créer manuellement les logs pour l'ANDPC."</p> | |
| <div class="mt-4 text-yellow-400"> | |
| <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> | |
| <!-- Testimonial 3 --> | |
| <div class="bg-gray-50 p-8 rounded-xl"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-full bg-purple-100 flex items-center justify-center mr-4"> | |
| <i class="fas fa-hospital-user text-purple-600 text-xl"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Prof. Alain Bernard</h4> | |
| <p class="text-sm text-gray-500">Responsable formation hospitalière</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-700 italic">"La solution clé en main de CAMPUS DPC nous a permis de digitaliser rapidement nos formations tout en respectant les exigences du DPC. Un vrai gain de temps et d'efficacité."</p> | |
| <div class="mt-4 text-yellow-400"> | |
| <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> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-16 bg-blue-800 text-white"> | |
| <div class="container mx-auto px-4 text-center"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Prêt à digitaliser vos formations DPC ?</h2> | |
| <p class="text-xl mb-8 max-w-3xl mx-auto">Mettez en ligne vos actions DPC dès demain et simplifiez votre gestion des formations.</p> | |
| <a href="#contact" class="bg-white text-blue-800 font-bold py-3 px-8 rounded-lg hover:bg-gray-100 transition duration-300 inline-block">Demander une démonstration</a> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-20 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-4xl mx-auto"> | |
| <div class="text-center mb-12"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Contactez-nous</h2> | |
| <p class="text-xl text-gray-600">Une question sur CAMPUS DPC ? Notre équipe est à votre disposition.</p> | |
| </div> | |
| <div class="bg-white rounded-xl shadow-lg overflow-hidden"> | |
| <div class="md:flex"> | |
| <div class="md:w-1/2 bg-blue-600 text-white p-8 md:p-12"> | |
| <h3 class="text-2xl font-bold mb-6">Informations de contact</h3> | |
| <div class="space-y-6"> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0"> | |
| <i class="fas fa-envelope text-xl"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="font-medium">Email</p> | |
| <p>contact@campusdpc.com</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0"> | |
| <i class="fas fa-phone-alt text-xl"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="font-medium">Téléphone</p> | |
| <p>01 23 45 67 89</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0"> | |
| <i class="fas fa-clock text-xl"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="font-medium">Horaires</p> | |
| <p>Lundi - Vendredi : 9h - 18h</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 p-8 md:p-12"> | |
| <form id="contactForm" class="space-y-6"> | |
| <div> | |
| <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Nom complet</label> | |
| <input type="text" id="name" name="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" required> | |
| </div> | |
| <div> | |
| <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label> | |
| <input type="email" id="email" name="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" required> | |
| </div> | |
| <div> | |
| <label for="phone" class="block text-sm font-medium text-gray-700 mb-1">Téléphone</label> | |
| <input type="tel" id="phone" name="phone" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500"> | |
| </div> | |
| <div> | |
| <label for="message" class="block text-sm font-medium text-gray-700 mb-1">Message</label> | |
| <textarea id="message" name="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" required></textarea> | |
| </div> | |
| <div> | |
| <button type="submit" class="w-full bg-blue-600 text-white font-bold py-3 px-6 rounded-lg hover:bg-blue-700 transition duration-300">Envoyer le message</button> | |
| </div> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- FAQ Section --> | |
| <section class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-3xl mx-auto"> | |
| <div class="text-center mb-12"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Questions fréquentes</h2> | |
| <p class="text-xl text-gray-600">Trouvez les réponses aux questions les plus posées sur CAMPUS DPC.</p> | |
| </div> | |
| <div class="space-y-4"> | |
| <!-- FAQ Item 1 --> | |
| <div class="bg-white rounded-lg shadow-md overflow-hidden"> | |
| <button class="faq-toggle w-full flex justify-between items-center p-6 text-left"> | |
| <span class="text-lg font-medium">Combien de temps faut-il pour mettre en ligne une formation ?</span> | |
| <i class="fas fa-chevron-down transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content px-6 pb-6 hidden"> | |
| <p class="text-gray-600">Grâce à notre processus simplifié, nous pouvons mettre en ligne votre formation en seulement 24 heures après réception de vos ressources. Notre équipe technique s'occupe de tout le paramétrage pour vous.</p> | |
| </div> | |
| </div> | |
| <!-- FAQ Item 2 --> | |
| <div class="bg-white rounded-lg shadow-md overflow-hidden"> | |
| <button class="faq-toggle w-full flex justify-between items-center p-6 text-left"> | |
| <span class="text-lg font-medium">Quels types de ressources puis-je utiliser pour mes formations ?</span> | |
| <i class="fas fa-chevron-down transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content px-6 pb-6 hidden"> | |
| <p class="text-gray-600">Nous acceptons tous les formats courants : présentations PowerPoint, documents Word, PDF, vidéos MP4, fichiers audio, images, etc. Si vous avez des questions sur un format spécifique, notre équipe peut vous conseiller.</p> | |
| </div> | |
| </div> | |
| <!-- FAQ Item 3 --> | |
| <div class="bg-white rounded-lg shadow-md overflow-hidden"> | |
| <button class="faq-toggle w-full flex justify-between items-center p-6 text-left"> | |
| <span class="text-lg font-medium">Comment sont générés les documents de facturation pour l'ANDPC ?</span> | |
| <i class="fas fa-chevron-down transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content px-6 pb-6 hidden"> | |
| <p class="text-gray-600">Notre plateforme génère automatiquement les logs de connexion, les attestations de présence et tous les documents nécessaires au format exigé par l'ANDPC. Vous recevez ces documents par email à la fin de chaque session, prêts à être déposés sur le site de l'ANDPC.</p> | |
| </div> | |
| </div> | |
| <!-- FAQ Item 4 --> | |
| <div class="bg-white rounded-lg shadow-md overflow-hidden"> | |
| <button class="faq-toggle w-full flex justify-between items-center p-6 text-left"> | |
| <span class="text-lg font-medium">Puis-je tester la plateforme avant de m'engager ?</span> | |
| <i class="fas fa-chevron-down transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content px-6 pb-6 hidden"> | |
| <p class="text-gray-600">Absolument ! Nous proposons une démonstration personnalisée de la plateforme où nous pouvons vous montrer toutes les fonctionnalités et répondre à vos questions spécifiques. Contactez-nous pour organiser cette démo.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-12"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid md:grid-cols-4 gap-8"> | |
| <div> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-10 h-10 bg-blue-600 rounded-lg flex items-center justify-center mr-3"> | |
| <i class="fas fa-graduation-cap text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-bold">CAMPUS <span class="text-blue-400">DPC</span></h3> | |
| </div> | |
| <p class="text-gray-400">Solution clé en main pour réaliser vos sessions DPC avant la fin du plan triennal.</p> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold mb-4">Liens utiles</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#features" class="text-gray-400 hover:text-white transition">Fonctionnalités</a></li> | |
| <li><a href="#how-it-works" class="text-gray-400 hover:text-white transition">Comment ça marche</a></li> | |
| <li><a href="#benefits" class="text-gray-400 hover:text-white transition">Avantages</a></li> | |
| <li><a href="#contact" class="text-gray-400 hover:text-white transition">Contact</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold mb-4">Légal</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Mentions légales</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Politique de confidentialité</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">CGU</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold mb-4">Suivez-nous</h4> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-600 transition"> | |
| <i class="fab fa-linkedin-in"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-400 transition"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-800 transition"> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400"> | |
| <p>© 2023 CAMPUS DPC. Tous droits réservés.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // FAQ Toggle | |
| document.querySelectorAll('.faq-toggle').forEach(button => { | |
| button.addEventListener('click', () => { | |
| const content = button.nextElementSibling; | |
| const icon = button.querySelector('i'); | |
| content.classList.toggle('hidden'); | |
| icon.classList.toggle('rotate-180'); | |
| }); | |
| }); | |
| // Smooth scrolling for anchor links | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function (e) { | |
| e.preventDefault(); | |
| document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
| behavior: 'smooth' | |
| }); | |
| }); | |
| }); | |
| // Form submission | |
| document.getElementById('contactForm').addEventListener('submit', function(e) { | |
| e.preventDefault(); | |
| alert('Merci pour votre message ! Nous vous contacterons rapidement.'); | |
| this.reset(); | |
| }); | |
| </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=Lucaaas/campus-dpc" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |