Spaces:
Running
Running
| <html lang="fr"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>FLIPP - Accueil</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet"> | |
| <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <style> | |
| .hero-gradient { | |
| background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.8) 100%); | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-black text-white min-h-screen flex flex-col"> | |
| <!-- Navigation --> | |
| <nav class="flex justify-between items-center px-8 py-4"> | |
| <div class="text-red-600 text-4xl font-bold">FLIPP</div> | |
| <div class="flex space-x-6"> | |
| <a href="netflix.html" class="hover:text-gray-300">TV</a> | |
| <a href="iptv-setup.html" class="hover:text-gray-300">Paramètre</a> | |
| </div> | |
| </nav> | |
| <!-- Main Content --> | |
| <main class="flex-grow flex flex-col items-center justify-center px-8 text-center"> | |
| <div data-aos="fade-up" class="mb-12"> | |
| <h1 class="text-6xl font-bold mb-6 text-red-600">FLIPP</h1> | |
| <p class="text-2xl text-gray-300 mb-8">Votre plateforme de streaming préférée</p> | |
| </div> | |
| <div data-aos="fade-up" data-aos-delay="200" class="max-w-2xl mb-12"> | |
| <p class="text-lg text-gray-400 mb-8"> | |
| Découvrez une vaste collection de films, séries et contenus TV en streaming. | |
| Connectez-vous avec votre service IPTV pour accéder à tous vos contenus préférés. | |
| </p> | |
| </div> | |
| <div data-aos="fade-up" data-aos-delay="400" class="flex flex-col sm:flex-row gap-6"> | |
| <a href="netflix.html" class="bg-red-600 hover:bg-red-700 text-white px-8 py-4 rounded-lg text-lg font-bold transition-colors duration-300"> | |
| Commencer à regarder | |
| </a> | |
| <a href="iptv-setup.html" class="border border-gray-600 hover:border-gray-400 text-gray-300 hover:text-white px-8 py-4 rounded-lg text-lg font-bold transition-colors duration-300"> | |
| Configuration IPTV | |
| </a> | |
| </div> | |
| </main> | |
| <!-- Footer --> | |
| <footer class="py-8 px-8 text-center text-gray-500"> | |
| <p>© 2024 FLIPP. Tous droits réservés.</p> | |
| </footer> | |
| <script> | |
| AOS.init({ | |
| duration: 800, | |
| once: true | |
| }); | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> |