cestca's picture
toujours pas resultats
577353d verified
<!DOCTYPE html>
<html lang="en" class="h-full bg-gray-50">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aucun Résultat - Stellar</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="min-h-screen flex flex-col bg-gradient-to-b from-white to-gray-50">
<custom-navbar></custom-navbar>
<main class="flex-grow container mx-auto px-4 py-8">
<div class="max-w-3xl mx-auto text-center py-16">
<div class="mx-auto w-24 h-24 flex items-center justify-center rounded-full bg-purple-100 mb-6">
<i data-feather="search" class="text-purple-600 w-12 h-12"></i>
</div>
<h1 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Aucun résultat trouvé</h1>
<p class="text-xl text-gray-600 mb-8">Nous n'avons pas trouvé de correspondance pour votre recherche. Essayez ces suggestions :</p>
<div class="bg-white rounded-xl shadow-md p-6 mb-8 text-left">
<h3 class="text-lg font-semibold text-gray-900 mb-4">Conseils pour améliorer votre recherche :</h3>
<ul class="space-y-3 text-gray-700">
<li class="flex items-start">
<i data-feather="check-circle" class="text-purple-500 mr-3 mt-0.5 flex-shrink-0"></i>
<span>Vérifiez l'orthographe de vos termes de recherche</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-purple-500 mr-3 mt-0.5 flex-shrink-0"></i>
<span>Utilisez des termes plus généraux ou plus spécifiques</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-purple-500 mr-3 mt-0.5 flex-shrink-0"></i>
<span>Essayez différents synonymes ou termes associés</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-purple-500 mr-3 mt-0.5 flex-shrink-0"></i>
<span>Élargissez votre période de recherche</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-purple-500 mr-3 mt-0.5 flex-shrink-0"></i>
<span>Ajoutez ou supprimez des filtres de recherche</span>
</li>
</ul>
</div>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="/" class="px-6 py-3 bg-purple-600 text-white rounded-lg hover:bg-purple-700 transition-colors font-medium">
Retour à l'accueil
</a>
<button onclick="history.back()" class="px-6 py-3 bg-white text-gray-700 border border-gray-300 rounded-lg hover:bg-gray-50 transition-colors font-medium">
Réessayer
</button>
</div>
<div id="searchSuggestions" class="mt-8"></div>
</div>
</main>
<custom-footer></custom-footer>
<script>
feather.replace();
</script>
<script src="script.js"></script>
</body>
</html>