Spaces:
Running
Running
fait moi une page index - Follow Up Deployment
Browse files- index.html +65 -0
- prompts.txt +2 -1
index.html
CHANGED
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="fr">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>FLIPP - Accueil</title>
|
| 7 |
+
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
|
| 10 |
+
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
|
| 11 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 12 |
+
<style>
|
| 13 |
+
.hero-gradient {
|
| 14 |
+
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%);
|
| 15 |
+
}
|
| 16 |
+
</style>
|
| 17 |
+
</head>
|
| 18 |
+
<body class="bg-black text-white min-h-screen flex flex-col">
|
| 19 |
+
<!-- Navigation -->
|
| 20 |
+
<nav class="flex justify-between items-center px-8 py-4">
|
| 21 |
+
<div class="text-red-600 text-4xl font-bold">FLIPP</div>
|
| 22 |
+
<div class="flex space-x-6">
|
| 23 |
+
<a href="netflix.html" class="hover:text-gray-300">TV</a>
|
| 24 |
+
<a href="iptv-setup.html" class="hover:text-gray-300">Paramètre</a>
|
| 25 |
+
</div>
|
| 26 |
+
</nav>
|
| 27 |
+
|
| 28 |
+
<!-- Main Content -->
|
| 29 |
+
<main class="flex-grow flex flex-col items-center justify-center px-8 text-center">
|
| 30 |
+
<div data-aos="fade-up" class="mb-12">
|
| 31 |
+
<h1 class="text-6xl font-bold mb-6 text-red-600">FLIPP</h1>
|
| 32 |
+
<p class="text-2xl text-gray-300 mb-8">Votre plateforme de streaming préférée</p>
|
| 33 |
+
</div>
|
| 34 |
+
|
| 35 |
+
<div data-aos="fade-up" data-aos-delay="200" class="max-w-2xl mb-12">
|
| 36 |
+
<p class="text-lg text-gray-400 mb-8">
|
| 37 |
+
Découvrez une vaste collection de films, séries et contenus TV en streaming.
|
| 38 |
+
Connectez-vous avec votre service IPTV pour accéder à tous vos contenus préférés.
|
| 39 |
+
</p>
|
| 40 |
+
</div>
|
| 41 |
+
|
| 42 |
+
<div data-aos="fade-up" data-aos-delay="400" class="flex flex-col sm:flex-row gap-6">
|
| 43 |
+
<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">
|
| 44 |
+
Commencer à regarder
|
| 45 |
+
</a>
|
| 46 |
+
<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">
|
| 47 |
+
Configuration IPTV
|
| 48 |
+
</a>
|
| 49 |
+
</div>
|
| 50 |
+
</main>
|
| 51 |
+
|
| 52 |
+
<!-- Footer -->
|
| 53 |
+
<footer class="py-8 px-8 text-center text-gray-500">
|
| 54 |
+
<p>© 2024 FLIPP. Tous droits réservés.</p>
|
| 55 |
+
</footer>
|
| 56 |
+
|
| 57 |
+
<script>
|
| 58 |
+
AOS.init({
|
| 59 |
+
duration: 800,
|
| 60 |
+
once: true
|
| 61 |
+
});
|
| 62 |
+
feather.replace();
|
| 63 |
+
</script>
|
| 64 |
+
</body>
|
| 65 |
+
</html>
|
prompts.txt
CHANGED
|
@@ -11,4 +11,5 @@ Paramétré remplace par paramètre
|
|
| 11 |
|
| 12 |
|
| 13 |
efface
|
| 14 |
-
animation de démarage
|
|
|
|
|
|
| 11 |
|
| 12 |
|
| 13 |
efface
|
| 14 |
+
animation de démarage
|
| 15 |
+
fait moi une page index
|