File size: 2,727 Bytes
8c30643
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<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>&copy; 2024 FLIPP. Tous droits réservés.</p>
    </footer>

    <script>
        AOS.init({
            duration: 800,
            once: true
        });
        feather.replace();
    </script>
</body>
</html>