Spaces:
Running
Running
<html lang="fr"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>StreamVision | Films et Séries en streaming</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"> | |
<style> | |
.hero-gradient { | |
background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 50%, #db2777 100%); | |
} | |
.card-hover { | |
transition: all 0.3s ease; | |
} | |
.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); | |
} | |
.genre-tag { | |
transition: all 0.2s ease; | |
} | |
.genre-tag:hover { | |
transform: scale(1.05); | |
background-color: #3b82f6; | |
} | |
.play-overlay { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
background: rgba(0, 0, 0, 0.7); | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
opacity: 0; | |
transition: opacity 0.3s ease; | |
} | |
.card-hover:hover .play-overlay { | |
opacity: 1; | |
} | |
</style> | |
</head> | |
<body class="bg-gray-900 text-white font-sans"> | |
<!-- Navigation --> | |
<nav class="bg-gray-900 bg-opacity-90 backdrop-blur-md fixed w-full z-50 border-b border-gray-800"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex items-center justify-between h-16"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0"> | |
<span class="text-2xl font-bold bg-gradient-to-r from-blue-500 via-purple-500 to-pink-500 bg-clip-text text-transparent">StreamVision</span> | |
</div> | |
<div class="hidden md:block"> | |
<div class="ml-10 flex items-baseline space-x-4"> | |
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-white bg-blue-600">Accueil</a> | |
<a href="#films" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white hover:bg-gray-700">Films</a> | |
<a href="#series" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white hover:bg-gray-700">Séries</a> | |
<a href="#documentaires" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white hover:bg-gray-700">Documentaires</a> | |
<a href="#liste" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white hover:bg-gray-700">Ma liste</a> | |
</div> | |
</div> | |
</div> | |
<div class="hidden md:block"> | |
<div class="ml-4 flex items-center md:ml-6"> | |
<div class="relative"> | |
<input type="text" placeholder="Rechercher..." class="bg-gray-800 text-white px-4 py-1 rounded-full text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 w-64"> | |
<button class="absolute right-3 top-1/2 transform -translate-y-1/2 text-gray-400"> | |
<i class="fas fa-search"></i> | |
</button> | |
</div> | |
<button class="ml-4 p-1 rounded-full text-gray-400 hover:text-white focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-800 focus:ring-white"> | |
<i class="fas fa-bell text-xl"></i> | |
</button> | |
<div class="ml-3 relative"> | |
<div> | |
<button class="max-w-xs bg-gray-800 rounded-full flex items-center text-sm focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-800 focus:ring-white" id="user-menu"> | |
<img class="h-8 w-8 rounded-full" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt=""> | |
</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="-mr-2 flex md:hidden"> | |
<button type="button" class="bg-gray-800 inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-800 focus:ring-white" aria-controls="mobile-menu" aria-expanded="false"> | |
<span class="sr-only">Open main menu</span> | |
<i class="fas fa-bars"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
<!-- Mobile menu --> | |
<div class="md:hidden hidden" id="mobile-menu"> | |
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> | |
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-white bg-gray-900">Accueil</a> | |
<a href="#films" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-700">Films</a> | |
<a href="#series" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-700">Séries</a> | |
<a href="#documentaires" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-700">Documentaires</a> | |
<a href="#liste" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-700">Ma liste</a> | |
</div> | |
<div class="pt-4 pb-3 border-t border-gray-700"> | |
<div class="flex items-center px-5"> | |
<div class="flex-shrink-0"> | |
<img class="h-10 w-10 rounded-full" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt=""> | |
</div> | |
<div class="ml-3"> | |
<div class="text-base font-medium text-white">Jean Dupont</div> | |
<div class="text-sm font-medium text-gray-400">jean@example.com</div> | |
</div> | |
<button class="ml-auto bg-gray-800 flex-shrink-0 p-1 rounded-full text-gray-400 hover:text-white focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-800 focus:ring-white"> | |
<i class="fas fa-bell"></i> | |
</button> | |
</div> | |
<div class="mt-3 px-2 space-y-1"> | |
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-400 hover:text-white hover:bg-gray-700">Votre profil</a> | |
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-400 hover:text-white hover:bg-gray-700">Paramètres</a> | |
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-400 hover:text-white hover:bg-gray-700">Se déconnecter</a> | |
</div> | |
</div> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<section class="hero-gradient pt-32 pb-20 px-4 sm:px-6 lg:px-8"> | |
<div class="max-w-7xl mx-auto"> | |
<div class="md:flex md:items-center md:justify-between"> | |
<div class="md:w-1/2 mb-10 md:mb-0"> | |
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6"> | |
Votre divertissement <span class="text-transparent bg-clip-text bg-gradient-to-r from-yellow-300 to-pink-400">sans limites</span> | |
</h1> | |
<p class="text-xl text-gray-200 mb-8"> | |
Des milliers de films, séries et documentaires à portée de main. | |
Regardez ce que vous voulez, quand vous voulez, sans publicité. | |
</p> | |
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
<a href="#films" class="bg-red-600 hover:bg-red-700 text-white font-bold py-3 px-8 rounded-lg text-lg flex items-center justify-center transition duration-300 transform hover:scale-105"> | |
<i class="fas fa-play mr-2"></i> Commencer à regarder | |
</a> | |
<a href="#abonnement" class="bg-white bg-opacity-20 hover:bg-opacity-30 text-white font-bold py-3 px-8 rounded-lg text-lg flex items-center justify-center transition duration-300 transform hover:scale-105"> | |
<i class="fas fa-info-circle mr-2"></i> S'abonner | |
</a> | |
</div> | |
<div class="mt-6 flex items-center"> | |
<div class="flex -space-x-2"> | |
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/12.jpg" alt=""> | |
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/men/11.jpg" alt=""> | |
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/19.jpg" alt=""> | |
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/men/32.jpg" alt=""> | |
</div> | |
<p class="ml-4 text-gray-200">Rejoignez <span class="font-bold text-white">10M+</span> utilisateurs satisfaits</p> | |
</div> | |
</div> | |
<div class="md:w-1/2 relative"> | |
<div class="relative"> | |
<img src="https://image.tmdb.org/t/p/w1280/9PqD3wSIjntyJDBzMNuxuKHwpUD.jpg" alt="Hero image" class="rounded-xl shadow-2xl w-full"> | |
<div class="absolute -bottom-6 -right-6 bg-gray-900 p-4 rounded-xl shadow-xl w-3/4"> | |
<div class="flex items-center mb-2"> | |
<div class="bg-yellow-400 text-gray-900 px-2 py-1 rounded text-xs font-bold mr-2">NOUVEAU</div> | |
<div class="text-sm text-gray-300">Série originale</div> | |
</div> | |
<h3 class="text-xl font-bold mb-2">Le Dernier Royaume</h3> | |
<div class="flex items-center text-sm text-gray-400"> | |
<span class="mr-3">2023</span> | |
<span class="mr-3">4K</span> | |
<span class="mr-3">16+</span> | |
<span>5 saisons</span> | |
</div> | |
<a href="https://www.youtube.com/watch?v=WueUQSSbQ1M" target="_blank" class="mt-3 bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-lg text-sm flex items-center"> | |
<i class="fas fa-play mr-2"></i> Regarder maintenant | |
</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Content Sections --> | |
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12"> | |
<!-- Trending Now --> | |
<section class="mb-16" id="films"> | |
<div class="flex items-center justify-between mb-6"> | |
<h2 class="text-2xl font-bold">Tendances actuelles</h2> | |
<a href="films.html" class="text-blue-400 hover:text-blue-300 flex items-center"> | |
Voir tout <i class="fas fa-chevron-right ml-1"></i> | |
</a> | |
</div> | |
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4"> | |
<!-- Movie Card 1 --> | |
<div class="card-hover bg-gray-800 rounded-lg overflow-hidden shadow-lg cursor-pointer"> | |
<div class="relative"> | |
<img src="https://image.tmdb.org/t/p/w500/gEU2QniE6E77NI6lCU6MxlNBvIx.jpg" alt="Interstellar" class="w-full h-auto"> | |
<div class="play-overlay"> | |
<a href="film-interstellar.html" class="bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-full text-lg flex items-center"> | |
<i class="fas fa-play mr-2"></i> Regarder | |
</a> | |
</div> | |
<div class="absolute top-2 right-2 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded"> | |
4K | |
</div> | |
</div> | |
<div class="p-4"> | |
<h3 class="font-semibold text-lg mb-1">Interstellar</h3> | |
<div class="flex items-center text-gray-400 text-sm"> | |
<span>2014</span> | |
<span class="mx-2">•</span> | |
<span>2h 49m</span> | |
</div> | |
<div class="mt-2 flex flex-wrap gap-1"> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Sci-Fi</span> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Aventure</span> | |
</div> | |
</div> | |
</div> | |
<!-- Movie Card 2 --> | |
<div class="card-hover bg-gray-800 rounded-lg overflow-hidden shadow-lg cursor-pointer"> | |
<div class="relative"> | |
<img src="https://image.tmdb.org/t/p/w500/qJ2tW6WMUDux911r6m7haRef0WH.jpg" alt="The Dark Knight" class="w-full h-auto"> | |
<div class="play-overlay"> | |
<a href="film-dark-knight.html" class="bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-full text-lg flex items-center"> | |
<i class="fas fa-play mr-2"></i> Regarder | |
</a> | |
</div> | |
<div class="absolute top-2 right-2 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded"> | |
HD | |
</div> | |
</div> | |
<div class="p-4"> | |
<h3 class="font-semibold text-lg mb-1">The Dark Knight</h3> | |
<div class="flex items-center text-gray-400 text-sm"> | |
<span>2008</span> | |
<span class="mx-2">•</span> | |
<span>2h 32m</span> | |
</div> | |
<div class="mt-2 flex flex-wrap gap-1"> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Action</span> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Thriller</span> | |
</div> | |
</div> | |
</div> | |
<!-- Movie Card 3 --> | |
<div class="card-hover bg-gray-800 rounded-lg overflow-hidden shadow-lg cursor-pointer"> | |
<div class="relative"> | |
<img src="https://image.tmdb.org/t/p/w500/9gk7adHYeDvHkCSEqAvQNLV5Uge.jpg" alt="Inception" class="w-full h-auto"> | |
<div class="play-overlay"> | |
<a href="film-inception.html" class="bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-full text-lg flex items-center"> | |
<i class="fas fa-play mr-2"></i> Regarder | |
</a> | |
</div> | |
<div class="absolute top-2 right-2 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded"> | |
4K | |
</div> | |
</div> | |
<div class="p-4"> | |
<h3 class="font-semibold text-lg mb-1">Inception</h3> | |
<div class="flex items-center text-gray-400 text-sm"> | |
<span>2010</span> | |
<span class="mx-2">•</span> | |
<span>2h 28m</span> | |
</div> | |
<div class="mt-2 flex flex-wrap gap-1"> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Sci-Fi</span> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Thriller</span> | |
</div> | |
</div> | |
</div> | |
<!-- Movie Card 4 --> | |
<div class="card-hover bg-gray-800 rounded-lg overflow-hidden shadow-lg cursor-pointer"> | |
<div class="relative"> | |
<img src="https://image.tmdb.org/t/p/w500/d5iIlFn5s0ImszYzBPb8JPIfbXD.jpg" alt="Pulp Fiction" class="w-full h-auto"> | |
<div class="play-overlay"> | |
<a href="film-pulp-fiction.html" class="bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-full text-lg flex items-center"> | |
<i class="fas fa-play mr-2"></i> Regarder | |
</a> | |
</div> | |
<div class="absolute top-2 right-2 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded"> | |
HD | |
</div> | |
</div> | |
<div class="p-4"> | |
<h3 class="font-semibold text-lg mb-1">Pulp Fiction</h3> | |
<div class="flex items-center text-gray-400 text-sm"> | |
<span>1994</span> | |
<span class="mx-2">•</span> | |
<span>2h 34m</span> | |
</div> | |
<div class="mt-2 flex flex-wrap gap-1"> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Crime</span> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Drame</span> | |
</div> | |
</div> | |
</div> | |
<!-- Movie Card 5 --> | |
<div class="card-hover bg-gray-800 rounded-lg overflow-hidden shadow-lg cursor-pointer"> | |
<div class="relative"> | |
<img src="https://image.tmdb.org/t/p/w500/q6y0Go1tsGEsmtFryDOJo3dEmqu.jpg" alt="The Shawshank Redemption" class="w-full h-auto"> | |
<div class="play-overlay"> | |
<a href="film-shawshank.html" class="bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-full text-lg flex items-center"> | |
<i class="fas fa-play mr-2"></i> Regarder | |
</a> | |
</div> | |
<div class="absolute top-2 right-2 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded"> | |
4K | |
</div> | |
</div> | |
<div class="p-4"> | |
<h3 class="font-semibold text-lg mb-1">The Shawshank Redemption</h3> | |
<div class="flex items-center text-gray-400 text-sm"> | |
<span>1994</span> | |
<span class="mx-2">•</span> | |
<span>2h 22m</span> | |
</div> | |
<div class="mt-2 flex flex-wrap gap-1"> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Drame</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Popular Series --> | |
<section class="mb-16" id="series"> | |
<div class="flex items-center justify-between mb-6"> | |
<h2 class="text-2xl font-bold">Séries populaires</h2> | |
<a href="series.html" class="text-blue-400 hover:text-blue-300 flex items-center"> | |
Voir tout <i class="fas fa-chevron-right ml-1"></i> | |
</a> | |
</div> | |
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4"> | |
<!-- Series Card 1 --> | |
<div class="card-hover bg-gray-800 rounded-lg overflow-hidden shadow-lg cursor-pointer"> | |
<div class="relative"> | |
<img src="https://image.tmdb.org/t/p/w500/49WJfeN0moxb9IPfGn8AIqMGskD.jpg" alt="Stranger Things" class="w-full h-auto"> | |
<div class="play-overlay"> | |
<a href="serie-stranger-things.html" class="bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-full text-lg flex items-center"> | |
<i class="fas fa-play mr-2"></i> Regarder | |
</a> | |
</div> | |
<div class="absolute top-2 right-2 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded"> | |
4K | |
</div> | |
</div> | |
<div class="p-4"> | |
<h3 class="font-semibold text-lg mb-1">Stranger Things</h3> | |
<div class="flex items-center text-gray-400 text-sm"> | |
<span>2016</span> | |
<span class="mx-2">•</span> | |
<span>4 saisons</span> | |
</div> | |
<div class="mt-2 flex flex-wrap gap-1"> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Sci-Fi</span> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Horreur</span> | |
</div> | |
</div> | |
</div> | |
<!-- Series Card 2 --> | |
<div class="card-hover bg-gray-800 rounded-lg overflow-hidden shadow-lg cursor-pointer"> | |
<div class="relative"> | |
<img src="https://image.tmdb.org/t/p/w500/ggFHVNu6YYI5L9pCfOacjizRGt.jpg" alt="Breaking Bad" class="w-full h-auto"> | |
<div class="play-overlay"> | |
<a href="serie-breaking-bad.html" class="bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-full text-lg flex items-center"> | |
<i class="fas fa-play mr-2"></i> Regarder | |
</a> | |
</div> | |
<div class="absolute top-2 right-2 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded"> | |
HD | |
</div> | |
</div> | |
<div class="p-4"> | |
<h3 class="font-semibold text-lg mb-1">Breaking Bad</h3> | |
<div class="flex items-center text-gray-400 text-sm"> | |
<span>2008</span> | |
<span class="mx-2">•</span> | |
<span>5 saisons</span> | |
</div> | |
<div class="mt-2 flex flex-wrap gap-1"> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Crime</span> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Drama</span> | |
</div> | |
</div> | |
</div> | |
<!-- Series Card 3 --> | |
<div class="card-hover bg-gray-800 rounded-lg overflow-hidden shadow-lg cursor-pointer"> | |
<div class="relative"> | |
<img src="https://image.tmdb.org/t/p/w500/sWgBv7LV2PRoQgkxwlibdGXKz1S.jpg" alt="The Mandalorian" class="w-full h-auto"> | |
<div class="play-overlay"> | |
<a href="serie-mandalorian.html" class="bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-full text-lg flex items-center"> | |
<i class="fas fa-play mr-2"></i> Regarder | |
</a> | |
</div> | |
<div class="absolute top-2 right-2 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded"> | |
4K | |
</div> | |
</div> | |
<div class="p-4"> | |
<h3 class="font-semibold text-lg mb-1">The Mandalorian</h3> | |
<div class="flex items-center text-gray-400 text-sm"> | |
<span>2019</span> | |
<span class="mx-2">•</span> | |
<span>3 saisons</span> | |
</div> | |
<div class="mt-2 flex flex-wrap gap-1"> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Sci-Fi</span> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Aventure</span> | |
</div> | |
</div> | |
</div> | |
<!-- Series Card 4 --> | |
<div class="card-hover bg-gray-800 rounded-lg overflow-hidden shadow-lg cursor-pointer"> | |
<div class="relative"> | |
<img src="https://image.tmdb.org/t/p/w500/u3bZgnGQ9T01sWNhyveQz0wH0Hl.jpg" alt="Game of Thrones" class="w-full h-auto"> | |
<div class="play-overlay"> | |
<a href="serie-game-of-thrones.html" class="bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-full text-lg flex items-center"> | |
<i class="fas fa-play mr-2"></i> Regarder | |
</a> | |
</div> | |
<div class="absolute top-2 right-2 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded"> | |
HD | |
</div> | |
</div> | |
<div class="p-4"> | |
<h3 class="font-semibold text-lg mb-1">Game of Thrones</h3> | |
<div class="flex items-center text-gray-400 text-sm"> | |
<span>2011</span> | |
<span class="mx-2">•</span> | |
<span>8 saisons</span> | |
</div> | |
<div class="mt-2 flex flex-wrap gap-1"> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Fantasy</span> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Drame</span> | |
</div> | |
</div> | |
</div> | |
<!-- Series Card 5 --> | |
<div class="card-hover bg-gray-800 rounded-lg overflow-hidden shadow-lg cursor-pointer"> | |
<div class="relative"> | |
<img src="https://image.tmdb.org/t/p/w500/7vjaCdMw15FEbXyLQTVa04URsPm.jpg" alt="The Witcher" class="w-full h-auto"> | |
<div class="play-overlay"> | |
<a href="serie-witcher.html" class="bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-full text-lg flex items-center"> | |
<i class="fas fa-play mr-2"></i> Regarder | |
</a> | |
</div> | |
<div class="absolute top-2 right-2 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded"> | |
4K | |
</div> | |
</div> | |
<div class="p-4"> | |
<h3 class="font-semibold text-lg mb-1">The Witcher</h3> | |
<div class="flex items-center text-gray-400 text-sm"> | |
<span>2019</span> | |
<span class="mx-2">•</span> | |
<span>2 saisons</span> | |
</div> | |
<div class="mt-2 flex flex-wrap gap-1"> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Fantasy</span> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Aventure</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Documentaries --> | |
<section class="mb-16" id="documentaires"> | |
<div class="flex items-center justify-between mb-6"> | |
<h2 class="text-2xl font-bold">Documentaires primés</h2> | |
<a href="documentaires.html" class="text-blue-400 hover:text-blue-300 flex items-center"> | |
Voir tout <i class="fas fa-chevron-right ml-1"></i> | |
</a> | |
</div> | |
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4"> | |
<!-- Documentary Card 1 --> | |
<div class="card-hover bg-gray-800 rounded-lg overflow-hidden shadow-lg cursor-pointer"> | |
<div class="relative"> | |
<img src="https://image.tmdb.org/t/p/w500/4QKKGDVq1xW5L0j6T0GrGQzINYd.jpg" alt="Free Solo" class="w-full h-auto"> | |
<div class="play-overlay"> | |
<a href="docu-free-solo.html" class="bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-full text-lg flex items-center"> | |
<i class="fas fa-play mr-2"></i> Regarder | |
</a> | |
</div> | |
<div class="absolute top-2 right-2 bg-yellow-500 text-gray-900 text-xs px-2 py-1 rounded font-bold"> | |
<i class="fas fa-trophy mr-1"></i> OSCAR | |
</div> | |
</div> | |
<div class="p-4"> | |
<h3 class="font-semibold text-lg mb-1">Free Solo</h3> | |
<div class="flex items-center text-gray-400 text-sm"> | |
<span>2018</span> | |
<span class="mx-2">•</span> | |
<span>1h 40m</span> | |
</div> | |
<div class="mt-2 flex flex-wrap gap-1"> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Aventure</span> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Sport</span> | |
</div> | |
</div> | |
</div> | |
<!-- Documentary Card 2 --> | |
<div class="card-hover bg-gray-800 rounded-lg overflow-hidden shadow-lg cursor-pointer"> | |
<div class="relative"> | |
<img src="https://image.tmdb.org/t/p/w500/bT3c4TSOPsDVLea6x1UA4bRZYCH.jpg" alt="The Social Dilemma" class="w-full h-auto"> | |
<div class="play-overlay"> | |
<a href="docu-social-dilemma.html" class="bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-full text-lg flex items-center"> | |
<i class="fas fa-play mr-2"></i> Regarder | |
</a> | |
</div> | |
</div> | |
<div class="p-4"> | |
<h3 class="font-semibold text-lg mb-1">The Social Dilemma</h3> | |
<div class="flex items-center text-gray-400 text-sm"> | |
<span>2020</span> | |
<span class="mx-2">•</span> | |
<span>1h 34m</span> | |
</div> | |
<div class="mt-2 flex flex-wrap gap-1"> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Technologie</span> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Documentaire</span> | |
</div> | |
</div> | |
</div> | |
<!-- Documentary Card 3 --> | |
<div class="card-hover bg-gray-800 rounded-lg overflow-hidden shadow-lg cursor-pointer"> | |
<div class="relative"> | |
<img src="https://image.tmdb.org/t/p/w500/tnX7iy3YQ2sErVG0UaMZqQ6hTQl.jpg" alt="My Octopus Teacher" class="w-full h-auto"> | |
<div class="play-overlay"> | |
<a href="docu-octopus-teacher.html" class="bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-full text-lg flex items-center"> | |
<i class="fas fa-play mr-2"></i> Regarder | |
</a> | |
</div> | |
<div class="absolute top-2 right-2 bg-yellow-500 text-gray-900 text-xs px-2 py-1 rounded font-bold"> | |
<i class="fas fa-trophy mr-1"></i> OSCAR | |
</div> | |
</div> | |
<div class="p-4"> | |
<h3 class="font-semibold text-lg mb-1">My Octopus Teacher</h3> | |
<div class="flex items-center text-gray-400 text-sm"> | |
<span>2020</span> | |
<span class="mx-2">•</span> | |
<span>1h 25m</span> | |
</div> | |
<div class="mt-2 flex flex-wrap gap-1"> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Nature</span> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Documentaire</span> | |
</div> | |
</div> | |
</div> | |
<!-- Documentary Card 4 --> | |
<div class="card-hover bg-gray-800 rounded-lg overflow-hidden shadow-lg cursor-pointer"> | |
<div class="relative"> | |
<img src="https://image.tmdb.org/t/p/w500/3Wk6Q0FM6sYvQvdQxUWQd8vF3z1.jpg" alt="The Last Dance" class="w-full h-auto"> | |
<div class="play-overlay"> | |
<a href="docu-last-dance.html" class="bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-full text-lg flex items-center"> | |
<i class="fas fa-play mr-2"></i> Regarder | |
</a> | |
</div> | |
</div> | |
<div class="p-4"> | |
<h3 class="font-semibold text-lg mb-1">The Last Dance</h3> | |
<div class="flex items-center text-gray-400 text-sm"> | |
<span>2020</span> | |
<span class="mx-2">•</span> | |
<span>10 épisodes</span> | |
</div> | |
<div class="mt-2 flex flex-wrap gap-1"> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Sport</span> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Biographie</span> | |
</div> | |
</div> | |
</div> | |
<!-- Documentary Card 5 --> | |
<div class="card-hover bg-gray-800 rounded-lg overflow-hidden shadow-lg cursor-pointer"> | |
<div class="relative"> | |
<img src="https://image.tmdb.org/t/p/w500/6pNY3OX5J7qFq8eWQ0Vk3QKFBQ5.jpg" alt="Seaspiracy" class="w-full h-auto"> | |
<div class="play-overlay"> | |
<a href="docu-seaspiracy.html" class="bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-full text-lg flex items-center"> | |
<i class="fas fa-play mr-2"></i> Regarder | |
</a> | |
</div> | |
</div> | |
<div class="p-4"> | |
<h3 class="font-semibold text-lg mb-1">Seaspiracy</h3> | |
<div class="flex items-center text-gray-400 text-sm"> | |
<span>2021</span> | |
<span class="mx-2">•</span> | |
<span>1h 29m</span> | |
</div> | |
<div class="mt-2 flex flex-wrap gap-1"> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Environnement</span> | |
<span class="genre-tag bg-gray-700 text-xs px-2 py-1 rounded">Documentaire</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Pricing Section --> | |
<section class="mb-16 bg-gray-800 rounded-xl p-8" id="abonnement"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold mb-4">Choisissez votre abonnement</h2> | |
<p class="text-gray-300 max-w-2xl mx-auto">Profitez de StreamVision sans publicité, sur tous vos appareils, avec des fonctionnalités premium.</p> | |
</div> | |
<div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto"> | |
<!-- Basic Plan --> | |
<div class="bg-gray-700 rounded-xl p-6 hover:bg-gray-600 transition duration-300 transform hover:scale-105"> | |
<div class="mb-6"> | |
<h3 class="text-xl font-semibold mb-2">Basique</h3> | |
<p class="text-gray-300 text-sm">Parfait pour les nouveaux utilisateurs</p> | |
</div> | |
<div class="mb-6"> | |
<span class="text-4xl font-bold">8,99€</span> | |
<span class="text-gray-300">/mois</span> | |
</div> | |
<ul class="mb-8 space-y-3"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>Qualité HD</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>1 écran à la fois</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>Annulation à tout moment</span> | |
</li> | |
<li class="flex items-center text-gray-400"> | |
<i class="fas fa-times text-red-400 mr-2"></i> | |
<span>Pas de téléchargement</span> | |
</li> | |
</ul> | |
<a href="abonnement.html?plan=basic" class="block w-full bg-gray-600 hover:bg-gray-500 text-white py-3 px-4 rounded-lg font-medium transition duration-300 text-center"> | |
Choisir ce plan | |
</a> | |
</div> | |
<!-- Standard Plan (Recommended) --> | |
<div class="bg-blue-600 rounded-xl p-6 relative transform hover:scale-105 transition duration-300"> | |
<div class="absolute -top-3 -right-3 bg-yellow-400 text-gray-900 text-xs font-bold px-3 py-1 rounded-full"> | |
RECOMMANDÉ | |
</div> | |
<div class="mb-6"> | |
<h3 class="text-xl font-semibold mb-2">Standard</h3> | |
<p class="text-blue-100 text-sm">Le plus populaire</p> | |
</div> | |
<div class="mb-6"> | |
<span class="text-4xl font-bold">12,99€</span> | |
<span class="text-blue-100">/mois</span> | |
</div> | |
<ul class="mb-8 space-y-3"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-white mr-2"></i> | |
<span>Qualité Full HD</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-white mr-2"></i> | |
<span>2 écrans simultanés</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-white mr-2"></i> | |
<span>Téléchargement sur 2 appareils</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-white mr-2"></i> | |
<span>Annulation à tout moment</span> | |
</li> | |
</ul> | |
<a href="abonnement.html?plan=standard" class="block w-full bg-white hover:bg-gray-100 text-blue-600 py-3 px-4 rounded-lg font-medium transition duration-300 text-center"> | |
Choisir ce plan | |
</a> | |
</div> | |
<!-- Premium Plan --> | |
<div class="bg-gray-700 rounded-xl p-6 hover:bg-gray-600 transition duration-300 transform hover:scale-105"> | |
<div class="mb-6"> | |
<h3 class="text-xl font-semibold mb-2">Premium</h3> | |
<p class="text-gray-300 text-sm">Pour les familles et les passionnés</p> | |
</div> | |
<div class="mb-6"> | |
<span class="text-4xl font-bold">15,99€</span> | |
<span class="text-gray-300">/mois</span> | |
</div> | |
<ul class="mb-8 space-y-3"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>Qualité 4K Ultra HD</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>4 écrans simultanés</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>Téléchargement sur 6 appareils</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>Annulation à tout moment</span> | |
</li> | |
</ul> | |
<a href="abonnement.html?plan=premium" class="block w-full bg-gray-600 hover:bg-gray-500 text-white py-3 px-4 rounded-lg font-medium transition duration-300 text-center"> | |
Choisir ce plan | |
</a> | |
</div> | |
</div> | |
<div class="mt-8 text-center text-gray-400 text-sm"> | |
<p>Essai gratuit de 30 jours. Annulez à tout moment.</p> | |
</div> | |
</section> | |
<!-- Features Section --> | |
<section class="mb-16"> | |
<div class="grid md:grid-cols-2 gap-12 items-center"> | |
<div> | |
<h2 class="text-3xl font-bold mb-6">Regardez partout, sur tous vos appareils</h2> | |
<p class="text-gray-300 mb-6"> | |
StreamVision est disponible sur smartphone, tablette, Smart TV, ordinateur ou console de jeu, | |
sans frais supplémentaires. Profitez de vos contenus préférés où que vous soyez. | |
</p> | |
<div class="space-y-4"> | |
<div class="flex items-start"> | |
<div class="bg-blue-600 p-2 rounded-lg mr-4"> | |
<i class="fas fa-mobile-alt text-white"></i> | |
</div> | |
<div> | |
<h4 class="font-semibold mb-1">Mobile</h4> | |
<p class="text-gray-400 text-sm">Disponible sur iOS и Android</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-purple-600 p-2 rounded-lg mr-4"> | |
<i class="fas fa-laptop text-white"></i> | |
</div> | |
<div> | |
<h4 class="font-semibold mb-1">Ordinateur</h4> | |
<p class="text-gray-400 text-sm">Navigateurs Chrome, Firefox, Safari et Edge</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-red-600 p-2 rounded-lg mr-4"> | |
<i class="fas fa-tv text-white"></i> | |
</div> | |
<div> | |
<h4 class="font-semibold mb-1">Smart TV</h4> | |
<p class="text-gray-400 text-sm">Apple TV, Android TV, Samsung et LG</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="relative"> | |
<img src="https://image.tmdb.org/t/p/w1280/5P8SmMzSNYikXpxil6BYzJ16611.jpg" alt="Devices" class="rounded-xl w-full"> | |
<div class="absolute -bottom-6 -left-6 bg-gray-800 p-4 rounded-xl shadow-xl w-3/4"> | |
<div class="flex items-center mb-2"> | |
<div class="bg-green-500 text-gray-900 px-2 py-1 rounded text-xs font-bold mr-2">NOUVEAU</div> | |
<div class="text-sm text-gray-300">Fonctionnalité</div> | |
</div> | |
<h3 class="text-xl font-bold mb-2">Téléchargement hors ligne</h3> | |
<p class="text-sm text-gray-400">Regardez vos contenus même sans connexion internet</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- FAQ Section --> | |
<section class="mb-16"> | |
<h2 class="text-3xl font-bold mb-8 text-center">Questions fréquentes</h2> | |
<div class="max-w-3xl mx-auto space-y-4"> | |
<!-- FAQ Item 1 --> | |
<div class="bg-gray-800 rounded-lg overflow-hidden"> | |
<button class="faq-toggle w-full text-left p-6 flex justify-between items-center"> | |
<span class="font-medium">Qu'est-ce que StreamVision ?</span> | |
<i class="fas fa-plus text-blue-400"></i> | |
</button> | |
<div class="faq-content hidden px-6 pb-6 pt-0"> | |
<p class="text-gray-300"> | |
StreamVision est un service de streaming qui propose une vaste sélection de films, | |
séries TV et documentaires primés sur des milliers d'appareils connectés à Internet. | |
<br><br> | |
Vous pouvez regarder autant que vous voulez, quand vous voulez, sans une seule publicité, | |
le tout pour un prix mensuel très attractif. Il y a toujours quelque chose de nouveau à | |
découvrir, et de nouvelles séries et films sont ajoutés chaque semaine ! | |
</p> | |
</div> | |
</div> | |
<!-- FAQ Item 2 --> | |
<div class="bg-gray-800 rounded-lg overflow-hidden"> | |
<button class="faq-toggle w-full text-left p-6 flex justify-between items-center"> | |
<span class="font-medium">Combien coûte StreamVision ?</span> | |
<i class="fas fa-plus text-blue-400"></i> | |
</button> | |
<div class="faq-content hidden px-6 pb-6 pt-0"> | |
<p class="text-gray-300"> | |
Regardez StreamVision sur votre smartphone, tablette, Smart TV, ordinateur ou appareil | |
de streaming, le tout pour un tarif mensuel fixe. Les forfaits vont de 8,99 € à 15,99 € | |
par mois. Sans contrat ni frais supplémentaires. | |
</p> | |
</div> | |
</div> | |
<!-- FAQ Item 3 --> | |
<div class="bg-gray-800 rounded-lg overflow-hidden"> | |
<button class="faq-toggle w-full text-left p-6 flex justify-between items-center"> | |
<span class="font-medium">Où puis-je regarder StreamVision ?</span> | |
<i class="fas fa-plus text-blue-400"></i> | |
</button> | |
<div class="faq-content hidden px-6 pb-6 pt-0"> | |
<p class="text-gray-300"> | |
Regardez où et quand vous voulez, sur un nombre illimité d'appareils. Connectez-vous à | |
votre compte pour regarder StreamVision en ligne sur streamvision.com depuis votre | |
ordinateur ou tout appareil connecté à Internet et équipé de l'application StreamVision, | |
comme les Smart TV, smartphones, tablettes, appareils de streaming et consoles de jeu. | |
<br><br> | |
Vous pouvez aussi télécharger vos séries préférées avec l'application iOS, Android ou | |
Windows 10. Téléchargez des titres pour les regarder sur la route et sans connexion | |
Internet. Emportez StreamVision partout avec vous. | |
</p> | |
</div> | |
</div> | |
<!-- FAQ Item 4 --> | |
<div class="bg-gray-800 rounded-lg overflow-hidden"> | |
<button class="faq-toggle w-full text-left p-6 flex justify-between items-center"> | |
<span class="font-medium">Comment puis-je annuler mon abonnement ?</span> | |
<i class="fas fa-plus text-blue-400"></i> | |
</button> | |
<div class="faq-content hidden px-6 pb-6 pt-0"> | |
<p class="text-gray-300"> | |
StreamVision offre une grande flexibilité. Pas de contrat compliqué, ni d'engagement. | |
Vous pouvez facilement annuler votre compte en ligne en deux clics. Pas de frais | |
d'annulation : ouvrez ou fermez votre compte à tout moment. | |
</p> | |
</div> | |
</div> | |
<!-- FAQ Item 5 --> | |
<div class="bg-gray-800 rounded-lg overflow-hidden"> | |
<button class="faq-toggle w-full text-left p-6 flex justify-between items-center"> | |
<span class="font-medium">Que puis-je regarder sur StreamVision ?</span> | |
<i class="fas fa-plus text-blue-400"></i> | |
</button> | |
<div class="faq-content hidden px-6 pb-6 pt-0"> | |
<p class="text-gray-300"> | |
StreamVision propose une vaste bibliothèque de longs métrages, documentaires, séries TV, | |
anime, productions originales primées et plus encore. Regardez autant que vous voulez, | |
quand vous voulez. | |
</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- CTA Section --> | |
<section class="bg-gradient-to-r from-blue-600 to-purple-600 rounded-xl p-8 md:p-12 text-center"> | |
<h2 class="text-3xl font-bold mb-4">Prêt à regarder ?</h2> | |
<p class="text-xl text-blue-100 mb-8 max-w-2xl mx-auto"> | |
Abonnez-vous dès maintenant. Annulez à tout moment pendant votre essai gratuit de 30 jours. | |
</p> | |
<a href="abonnement.html" class="inline-block bg-white hover:bg-gray-100 text-blue-600 font-bold py-4 px-12 rounded-lg text-lg transition duration-300 transform hover:scale-105"> | |
<i class="fas fa-play mr-2"></i> Commencer l'essai gratuit | |
</a> | |
</section> | |
</main> | |
<!-- Footer --> | |
<footer class="bg-gray-900 border-t border-gray-800"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12"> | |
<div class="grid grid-cols-2 md:grid-cols-4 gap-8"> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">Navigation</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white">Accueil</a></li> | |
<li><a href="films.html" class="text-gray-400 hover:text-white">Films</a></li> | |
<li><a href="series.html" class="text-gray-400 hover:text-white">Séries</a></li> | |
<li><a href="documentaires.html" class="text-gray-400 hover:text-white">Nouveautés</a></li> | |
<li><a href="#liste" class="text-gray-400 hover:text-white">Ma liste</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">Informations</h3> | |
<ul class="space-y-2"> | |
<li><a href="a-propos.html" class="text-gray-400 hover:text-white">À propos</a></li> | |
<li><a href="presse.html" class="text-gray-400 hover:text-white">Presse</a></li> | |
<li><a href="carrieres.html" class="text-gray-400 hover:text-white">Carrières</a></li> | |
<li><a href="contact.html" class="text-gray-400 hover:text-white">Contact</a></li> | |
<li><a href="faq.html" class="text-gray-400 hover:text-white">FAQ</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">Légal</h3> | |
<ul class="space-y-2"> | |
<li><a href="conditions.html" class="text-gray-400 hover:text-white">Conditions d'utilisation</a></li> | |
<li><a href="confidentialite.html" class="text-gray-400 hover:text-white">Confidentialité</a></li> | |
<li><a href="cookies.html" class="text-gray-400 hover:text-white">Préférences de cookies</a></li> | |
<li><a href="mentions-legales.html" class="text-gray-400 hover:text-white">Mentions légales</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">Nous suivre</h3> | |
<div class="flex space-x-4 mb-6"> | |
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-facebook"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-twitter"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-instagram"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-youtube"></i></a> | |
</div> | |
<h3 class="text-lg font-semibold mb-4">Télécharger l'application</h3> | |
<div class="flex space-x-2"> | |
<a href="#" class="block"> | |
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Download_on_the_App_Store_Badge.svg/2560px-Download_on_the_App_Store_Badge.svg.png" alt="App Store" class="h-10"> | |
</a> | |
<a href="#" class="block"> | |
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/78/Google_Play_Store_badge_EN.svg/2560px-Google_Play_Store_badge_EN.svg.png" alt="Google Play" class="h-10"> | |
</a> | |
</div> | |
</div> | |
</div> | |
<div class="mt-12 pt-8 border-t border-gray-800 text-center text-gray-400 text-sm"> | |
<p>© 2023 StreamVision. Tous droits réservés.</p> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Mobile menu toggle | |
const mobileMenuButton = document.querySelector('[aria-controls="mobile-menu"]'); | |
const mobileMenu = document.getElementById('mobile-menu'); | |
mobileMenuButton.addEventListener('click', () => { | |
mobileMenu.classList.toggle('hidden'); | |
}); | |
// FAQ toggle | |
const faqToggles = document.querySelectorAll('.faq-toggle'); | |
faqToggles.forEach(toggle => { | |
toggle.addEventListener('click', () => { | |
const content = toggle.nextElementSibling; | |
const icon = toggle.querySelector('i'); | |
content.classList.toggle('hidden'); | |
if (content.classList.contains('hidden')) { | |
icon.classList.remove('fa-minus'); | |
icon.classList.add('fa-plus'); | |
} else { | |
icon.classList.remove('fa-plus'); | |
icon.classList.add('fa-minus'); | |
} | |
}); | |
}); | |
// Simulate page loading for demo purposes | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function (e) { | |
e.preventDefault(); | |
const targetId = this.getAttribute('href'); | |
if(targetId === '#') return; | |
const targetElement = document.querySelector(targetId); | |
if(targetElement) { | |
targetElement.scrollIntoView({ | |
behavior: 'smooth' | |
}); | |
} | |
}); | |
}); | |
</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=docto41/stream-vision" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |