Spaces:
Running
Running
File size: 30,512 Bytes
876bd63 | 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 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 | <!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TIKOPS - Ingénierie Logicielle & Solutions IoT</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">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#cc4493',
primaryDark: '#a8377a',
primaryLight: '#e6a8d0',
}
}
}
}
</script>
<style>
.hero-gradient {
background: linear-gradient(135deg, rgba(204,68,147,0.9) 0%, rgba(102,51,153,0.9) 100%);
}
.card-hover:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #cc4493;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
.tech-icon {
transition: all 0.3s ease;
}
.tech-card:hover .tech-icon {
transform: scale(1.2);
color: #cc4493;
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Header -->
<header class="fixed w-full bg-white shadow-md z-50">
<div class="container mx-auto px-6 py-3">
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-primary flex items-center justify-center text-white font-bold text-xl mr-3">
<i class="fas fa-robot"></i>
</div>
<span class="text-xl font-bold text-primary">TIKOPS</span>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#accueil" class="nav-link text-gray-700 hover:text-primary transition">Accueil</a>
<a href="#services" class="nav-link text-gray-700 hover:text-primary transition">Services</a>
<a href="#secteurs" class="nav-link text-gray-700 hover:text-primary transition">Secteurs</a>
<a href="#technologies" class="nav-link text-gray-700 hover:text-primary transition">Technologies</a>
<a href="#contact" class="nav-link text-gray-700 hover:text-primary transition">Contact</a>
</nav>
<button class="md:hidden text-gray-700 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section id="accueil" class="hero-gradient pt-32 pb-20 text-white">
<div class="container mx-auto px-6 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-6">Solutions Technologiques Innovantes</h1>
<p class="text-xl mb-8">Ingénierie logicielle et conception hardware sur mesure pour l'IoT et l'Intelligence Artificielle</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-primary px-8 py-3 rounded-full font-semibold hover:bg-gray-100 transition text-center">Nous contacter</a>
<a href="#services" class="border-2 border-white px-8 py-3 rounded-full font-semibold hover:bg-white hover:text-primary transition text-center">Nos services</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://cdn-icons-png.flaticon.com/512/2933/2933245.png" alt="Technologies IoT et IA" class="w-64 h-64">
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-4 text-primary">Nos Services</h2>
<p class="text-xl text-center mb-16 max-w-2xl mx-auto">Des solutions sur mesure pour répondre à vos besoins technologiques</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="bg-white rounded-xl p-8 shadow-lg transition duration-300 card-hover">
<div class="w-16 h-16 bg-primaryLight rounded-full flex items-center justify-center mb-6">
<i class="fas fa-laptop-code text-primary text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Ingénierie Logicielle</h3>
<p class="text-gray-600 mb-4">Développement d'applications web, mobiles et desktop performantes et sécurisées.</p>
<ul class="space-y-2">
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Applications Web modernes</li>
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Solutions Mobile cross-platform</li>
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Logiciels Desktop professionnels</li>
</ul>
</div>
<!-- Service 2 -->
<div class="bg-white rounded-xl p-8 shadow-lg transition duration-300 card-hover">
<div class="w-16 h-16 bg-primaryLight rounded-full flex items-center justify-center mb-6">
<i class="fas fa-microchip text-primary text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Conception Hardware IoT</h3>
<p class="text-gray-600 mb-4">Solutions matérielles sur mesure pour l'Internet des Objets et systèmes embarqués.</p>
<ul class="space-y-2">
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Cartes électroniques personnalisées</li>
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Prototypage rapide</li>
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Intégration de capteurs</li>
</ul>
</div>
<!-- Service 3 -->
<div class="bg-white rounded-xl p-8 shadow-lg transition duration-300 card-hover">
<div class="w-16 h-16 bg-primaryLight rounded-full flex items-center justify-center mb-6">
<i class="fas fa-brain text-primary text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">IA & Machine Learning</h3>
<p class="text-gray-600 mb-4">Développement de modèles d'intelligence artificielle et d'apprentissage automatique.</p>
<ul class="space-y-2">
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Modèles prédictifs</li>
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Traitement du langage naturel</li>
<li class="flex items-center"><i class="fas fa-check-circle text-primary mr-2"></i> Vision par ordinateur</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Secteurs Section -->
<section id="secteurs" class="py-20">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-4 text-primary">Secteurs d'Intervention</h2>
<p class="text-xl text-center mb-16 max-w-2xl mx-auto">Nos solutions s'adaptent aux besoins spécifiques de chaque secteur</p>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- Agriculture -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 hover:shadow-xl">
<div class="h-48 bg-green-50 flex items-center justify-center">
<i class="fas fa-tractor text-6xl text-green-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-primary">Agriculture</h3>
<p class="text-gray-600 mb-4">Solutions IoT pour l'agriculture de précision et l'optimisation des ressources.</p>
<a href="#" class="text-primary font-semibold hover:underline">En savoir plus →</a>
</div>
</div>
<!-- Elevage -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 hover:shadow-xl">
<div class="h-48 bg-blue-50 flex items-center justify-center">
<i class="fas fa-cow text-6xl text-blue-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-primary">Élevage</h3>
<p class="text-gray-600 mb-4">Suivi animalier et gestion automatisée des troupeaux avec nos solutions IoT.</p>
<a href="#" class="text-primary font-semibold hover:underline">En savoir plus →</a>
</div>
</div>
<!-- Industrie -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 hover:shadow-xl">
<div class="h-48 bg-yellow-50 flex items-center justify-center">
<i class="fas fa-industry text-6xl text-yellow-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-primary">Industrie</h3>
<p class="text-gray-600 mb-4">Automatisation industrielle et maintenance prédictive avec nos solutions IA.</p>
<a href="#" class="text-primary font-semibold hover:underline">En savoir plus →</a>
</div>
</div>
<!-- Defense -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 hover:shadow-xl">
<div class="h-48 bg-red-50 flex items-center justify-center">
<i class="fas fa-shield-alt text-6xl text-red-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-primary">Défense</h3>
<p class="text-gray-600 mb-4">Technologies sécurisées pour applications militaires et systèmes de surveillance.</p>
<a href="#" class="text-primary font-semibold hover:underline">En savoir plus →</a>
</div>
</div>
</div>
</div>
</section>
<!-- Technologies Section -->
<section id="technologies" class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-4 text-primary">Nos Technologies</h2>
<p class="text-xl text-center mb-16 max-w-2xl mx-auto">Nous maîtrisons les technologies les plus avancées pour vos projets</p>
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-6">
<!-- IA & Machine Learning -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-brain tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">IA & Machine Learning</h3>
<p class="text-sm text-gray-600 text-center">Modèles prédictifs et analytique avancée</p>
</div>
<!-- Automatisation -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-cogs tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">Automatisation</h3>
<p class="text-sm text-gray-600 text-center">Processus industriels automatisés</p>
</div>
<!-- Robotique -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-robot tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">Robotique</h3>
<p class="text-sm text-gray-600 text-center">Systèmes robotisés intelligents</p>
</div>
<!-- LINUX -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fab fa-linux tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">LINUX</h3>
<p class="text-sm text-gray-600 text-center">Systèmes embarqués et serveurs</p>
</div>
<!-- Reconnaissance d'image -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-eye tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">Reconnaissance d'image</h3>
<p class="text-sm text-gray-600 text-center">Analyse et traitement d'images</p>
</div>
<!-- Business intelligence -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-chart-line tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">Business intelligence</h3>
<p class="text-sm text-gray-600 text-center">Tableaux de bord analytiques</p>
</div>
<!-- Data Science -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-database tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">Data Science</h3>
<p class="text-sm text-gray-600 text-center">Analyse de données massives</p>
</div>
<!-- IoT -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-network-wired tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">IoT</h3>
<p class="text-sm text-gray-600 text-center">Réseaux de capteurs intelligents</p>
</div>
<!-- Mobile -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-mobile-alt tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">Mobile</h3>
<p class="text-sm text-gray-600 text-center">Applications iOS et Android</p>
</div>
<!-- Web -->
<div class="tech-card bg-white p-6 rounded-xl shadow-md flex flex-col items-center transition duration-300 hover:shadow-lg">
<div class="w-16 h-16 rounded-full bg-gray-100 flex items-center justify-center mb-4">
<i class="fas fa-globe tech-icon text-2xl text-gray-700"></i>
</div>
<h3 class="font-bold mb-2 text-center">Web</h3>
<p class="text-sm text-gray-600 text-center">Applications web modernes</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-primary text-white">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-4">Contactez-nous</h2>
<p class="text-xl text-center mb-16 max-w-2xl mx-auto">Prêt à transformer votre activité avec nos solutions technologiques ?</p>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<div>
<form class="space-y-6">
<div>
<label for="name" class="block mb-2 font-medium">Votre nom</label>
<input type="text" id="name" class="w-full px-4 py-3 rounded-lg bg-primaryLight bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white">
</div>
<div>
<label for="email" class="block mb-2 font-medium">Votre email</label>
<input type="email" id="email" class="w-full px-4 py-3 rounded-lg bg-primaryLight bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white">
</div>
<div>
<label for="service" class="block mb-2 font-medium">Service intéressé</label>
<select id="service" class="w-full px-4 py-3 rounded-lg bg-primaryLight bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white text-white">
<option value="">Sélectionnez un service</option>
<option value="logiciel">Ingénierie Logicielle</option>
<option value="hardware">Conception Hardware IoT</option>
<option value="ia">IA & Machine Learning</option>
<option value="autre">Autre</option>
</select>
</div>
<div>
<label for="message" class="block mb-2 font-medium">Votre message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 rounded-lg bg-primaryLight bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white"></textarea>
</div>
<button type="submit" class="w-full bg-white text-primary px-6 py-3 rounded-lg font-semibold hover:bg-gray-100 transition">Envoyer le message</button>
</form>
</div>
<div>
<div class="bg-white bg-opacity-10 p-8 rounded-xl h-full">
<h3 class="text-xl font-bold mb-6">Coordonnées</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center mr-4 mt-1">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4 class="font-bold">Email</h4>
<p>contact@tikops.com</p>
</div>
</div>
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center mr-4 mt-1">
<i class="fas fa-phone-alt"></i>
</div>
<div>
<h4 class="font-bold">Téléphone</h4>
<p>00225 0767163631</p>
</div>
</div>
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center mr-4 mt-1">
<i class="fas fa-clock"></i>
</div>
<div>
<h4 class="font-bold">Horaires</h4>
<p>Lundi - Vendredi: 8h - 18h</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-bold mb-4">Suivez-nous</h4>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center hover:bg-opacity-30 transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center hover:bg-opacity-30 transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center hover:bg-opacity-30 transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center hover:bg-opacity-30 transition">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-primary flex items-center justify-center text-white font-bold text-lg mr-3">
<i class="fas fa-robot"></i>
</div>
<span class="text-xl font-bold">TIKOPS</span>
</div>
<p class="text-gray-400">Solutions technologiques innovantes pour l'agriculture, l'élevage, l'industrie et la défense.</p>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Services</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-primary transition">Ingénierie logicielle</a></li>
<li><a href="#" class="text-gray-400 hover:text-primary transition">Conception Hardware IoT</a></li>
<li><a href="#" class="text-gray-400 hover:text-primary transition">IA & Machine Learning</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Secteurs</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-primary transition">Agriculture</a></li>
<li><a href="#" class="text-gray-400 hover:text-primary transition">Élevage</a></li>
<li><a href="#" class="text-gray-400 hover:text-primary transition">Industrie</a></li>
<li><a href="#" class="text-gray-400 hover:text-primary transition">Défense</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Newsletter</h4>
<p class="text-gray-400 mb-4">Abonnez-vous pour recevoir nos dernières innovations.</p>
<div class="flex">
<input type="email" placeholder="Votre email" class="px-4 py-2 rounded-l-lg bg-gray-800 text-white focus:outline-none w-full">
<button class="bg-primary px-4 py-2 rounded-r-lg hover:bg-primaryDark transition">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 TIKOPS. Tous droits réservés.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-primary transition">Mentions légales</a>
<a href="#" class="text-gray-400 hover:text-primary transition">Confidentialité</a>
<a href="#" class="text-gray-400 hover:text-primary transition">CGU</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.querySelector('button').addEventListener('click', function() {
const nav = document.querySelector('nav');
nav.classList.toggle('hidden');
nav.classList.toggle('flex');
nav.classList.toggle('flex-col');
nav.classList.toggle('absolute');
nav.classList.toggle('top-16');
nav.classList.toggle('left-0');
nav.classList.toggle('right-0');
nav.classList.toggle('bg-white');
nav.classList.toggle('p-4');
nav.classList.toggle('shadow-md');
nav.classList.toggle('space-y-4');
nav.classList.toggle('space-x-0');
});
// 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'
});
// Close mobile menu if open
const nav = document.querySelector('nav');
if (!nav.classList.contains('hidden')) {
nav.classList.add('hidden');
nav.classList.remove('flex', 'flex-col', 'absolute', 'top-16', 'left-0', 'right-0', 'bg-white', 'p-4', 'shadow-md', 'space-y-4', 'space-x-0');
}
});
});
// Form submission
const form = document.querySelector('form');
if (form) {
form.addEventListener('submit', function(e) {
e.preventDefault();
alert('Merci pour votre message ! Nous vous contacterons bientôt.');
form.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=Ismaeldramani/tikops" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |