File size: 13,174 Bytes
cdb0d3f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2ed8b59
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>À la découverte de l'IA avec MohPython</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <style>
        .hero-gradient {
            background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
        }
        .part-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);
        }
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
    </style>
</head>
<body class="bg-gray-50 font-sans">
    <!-- Navigation -->
    <nav class="bg-white shadow-md">
        <div class="max-w-6xl mx-auto px-4">
            <div class="flex justify-between h-16">
                <div class="flex items-center">
                    <span class="text-xl font-bold text-purple-700">MohPython</span>
                </div>
                <div class="hidden md:flex items-center space-x-8">
                    <a href="#part1" class="text-gray-700 hover:text-purple-600">Partie 1</a>
                    <a href="#part2" class="text-gray-700 hover:text-purple-600">Partie 2</a>
                    <a href="#part3" class="text-gray-700 hover:text-purple-600">Partie 3</a>
                    <a href="#quiz" class="text-gray-700 hover:text-purple-600">Quiz</a>
                </div>
                <div class="md:hidden flex items-center">
                    <button class="mobile-menu-button">
                        <i data-feather="menu"></i>
                    </button>
                </div>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <section class="hero-gradient text-white py-20">
        <div class="max-w-6xl mx-auto px-4 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-4">À la découverte de l'IA</h1>
                <p class="text-xl mb-8">Un voyage interactif dans le monde fascinant de l'intelligence artificielle pour les étudiants de première année.</p>
                <button class="bg-white text-purple-700 px-6 py-3 rounded-full font-semibold hover:bg-purple-100 transition duration-300">Commencer l'aventure</button>
            </div>
            <div class="md:w-1/2 flex justify-center">
                <img src="http://static.photos/technology/640x360/42" alt="IA Illustration" class="rounded-lg shadow-xl floating">
            </div>
        </div>
    </section>

    <!-- Course Parts Overview -->
    <section id="parts" class="py-16 bg-white">
        <div class="max-w-6xl mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Explorez le programme</h2>
            
            <div class="grid md:grid-cols-3 gap-8">
                <!-- Part 1 Card -->
                <div id="part1" class="bg-purple-50 rounded-xl p-6 shadow-md transition duration-300 part-card">
                    <div class="bg-purple-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
                        <span class="text-purple-700 font-bold text-2xl">1</span>
                    </div>
                    <h3 class="text-xl font-bold mb-3 text-purple-800">Découverte de l'IA</h3>
                    <ul class="space-y-2 text-gray-700">
                        <li class="flex items-start">
                            <i data-feather="check-circle" class="text-purple-500 mr-2 mt-1"></i>
                            <span>Qu'est-ce que l'IA?</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="check-circle" class="text-purple-500 mr-2 mt-1"></i>
                            <span>Applications quotidiennes</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="check-circle" class="text-purple-500 mr-2 mt-1"></i>
                            <span>Démythifier l'IA</span>
                        </li>
                    </ul>
                    <button class="mt-4 text-purple-700 font-semibold flex items-center">
                        Explorer <i data-feather="arrow-right" class="ml-2"></i>
                    </button>
                </div>

                <!-- Part 2 Card -->
                <div id="part2" class="bg-blue-50 rounded-xl p-6 shadow-md transition duration-300 part-card">
                    <div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
                        <span class="text-blue-700 font-bold text-2xl">2</span>
                    </div>
                    <h3 class="text-xl font-bold mb-3 text-blue-800">Opportunités & Défis</h3>
                    <ul class="space-y-2 text-gray-700">
                        <li class="flex items-start">
                            <i data-feather="check-circle" class="text-blue-500 mr-2 mt-1"></i>
                            <span>Opportunités de l'IA</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="check-circle" class="text-blue-500 mr-2 mt-1"></i>
                            <span>Enjeux de sûreté</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="check-circle" class="text-blue-500 mr-2 mt-1"></i>
                            <span>Impact sur le travail</span>
                        </li>
                    </ul>
                    <button class="mt-4 text-blue-700 font-semibold flex items-center">
                        Explorer <i data-feather="arrow-right" class="ml-2"></i>
                    </button>
                </div>

                <!-- Part 3 Card -->
                <div id="part3" class="bg-green-50 rounded-xl p-6 shadow-md transition duration-300 part-card">
                    <div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
                        <span class="text-green-700 font-bold text-2xl">3</span>
                    </div>
                    <h3 class="text-xl font-bold mb-3 text-green-800">Projet d'IA</h3>
                    <ul class="space-y-2 text-gray-700">
                        <li class="flex items-start">
                            <i data-feather="check-circle" class="text-green-500 mr-2 mt-1"></i>
                            <span>Étapes d'un projet</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="check-circle" class="text-green-500 mr-2 mt-1"></i>
                            <span>Machine Learning</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="check-circle" class="text-green-500 mr-2 mt-1"></i>
                            <span>Deep Learning</span>
                        </li>
                    </ul>
                    <button class="mt-4 text-green-700 font-semibold flex items-center">
                        Explorer <i data-feather="arrow-right" class="ml-2"></i>
                    </button>
                </div>
            </div>
        </div>
    </section>

    <!-- Testimonials -->
    <section class="py-16 bg-gray-100">
        <div class="max-w-6xl mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Ce que disent les étudiants</h2>
            <div class="grid md:grid-cols-2 gap-8">
                <div class="bg-white p-6 rounded-xl shadow">
                    <div class="flex items-center mb-4">
                        <img src="http://static.photos/people/200x200/1" alt="Étudiant" class="w-12 h-12 rounded-full mr-4">
                        <div>
                            <h4 class="font-bold">Alexandre</h4>
                            <p class="text-gray-600">Étudiant en Informatique</p>
                        </div>
                    </div>
                    <p class="text-gray-700">"Ce cours m'a ouvert les yeux sur les possibilités infinies de l'IA. Les explications sont claires et les exemples concrets."</p>
                </div>
                <div class="bg-white p-6 rounded-xl shadow">
                    <div class="flex items-center mb-4">
                        <img src="http://static.photos/people/200x200/2" alt="Étudiante" class="w-12 h-12 rounded-full mr-4">
                        <div>
                            <h4 class="font-bold">Sophie</h4>
                            <p class="text-gray-600">Étudiante en Mathématiques</p>
                        </div>
                    </div>
                    <p class="text-gray-700">"J'avais peur de l'IA avant ce cours. Maintenant, je comprends mieux ses limites et ses forces. Les quiz sont vraiment utiles!"</p>
                </div>
            </div>
        </div>
    </section>

    <!-- CTA Section -->
    <section class="py-16 bg-purple-700 text-white">
        <div class="max-w-6xl mx-auto px-4 text-center">
            <h2 class="text-3xl font-bold mb-6">Prêt à plonger dans le monde de l'IA?</h2>
            <p class="text-xl mb-8 max-w-2xl mx-auto">Rejoignez des centaines d'étudiants qui ont déjà commencé leur voyage avec MohPython.</p>
            <button class="bg-white text-purple-700 px-8 py-4 rounded-full font-bold text-lg hover:bg-purple-100 transition duration-300 shadow-lg">
                S'inscrire maintenant <i data-feather="arrow-right" class="ml-2 inline"></i>
            </button>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-900 text-white py-12">
        <div class="max-w-6xl mx-auto px-4">
            <div class="grid md:grid-cols-4 gap-8">
                <div>
                    <h3 class="text-xl font-bold mb-4">MohPython</h3>
                    <p class="text-gray-400">Rendre l'IA accessible à tous, un étudiant à la fois.</p>
                </div>
                <div>
                    <h4 class="font-bold mb-4">Navigation</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white">Accueil</a></li>
                        <li><a href="#part1" class="text-gray-400 hover:text-white">Partie 1</a></li>
                        <li><a href="#part2" class="text-gray-400 hover:text-white">Partie 2</a></li>
                        <li><a href="#part3" class="text-gray-400 hover:text-white">Partie 3</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="font-bold mb-4">Ressources</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white">Quiz</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Exercices</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Bibliographie</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="font-bold mb-4">Contact</h4>
                    <div class="flex space-x-4">
                        <a href="#" class="text-gray-400 hover:text-white"><i data-feather="mail"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white"><i data-feather="twitter"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white"><i data-feather="linkedin"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white"><i data-feather="github"></i></a>
                    </div>
                </div>
            </div>
            <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
                <p>© 2023 MohPython. Tous droits réservés.</p>
            </div>
        </div>
    </footer>

    <script>
        feather.replace();
        
        // Mobile menu toggle
        const mobileMenuButton = document.querySelector('.mobile-menu-button');
        mobileMenuButton.addEventListener('click', () => {
            // Implement mobile menu functionality here
            alert("Menu mobile sera implémenté ici!");
        });

        // Smooth scrolling for navigation links
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                document.querySelector(this.getAttribute('href')).scrollIntoView({
                    behavior: 'smooth'
                });
            });
        });
    </script>
</body>
</html>