france-nergie / index.html
Adamchab's picture
Add 3 files
ca96b90 verified
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>France Énergie Plomberie du Val-de-Marne - Plombier de confiance</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>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #f8fafc;
}
.bubble {
position: relative;
background: white;
border-radius: 20px;
padding: 15px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
margin: 10px;
max-width: 250px;
}
.bubble:after {
content: '';
position: absolute;
bottom: -10px;
left: 50px;
width: 0;
height: 0;
border: 15px solid transparent;
border-top-color: white;
border-bottom: 0;
margin-left: -15px;
margin-bottom: -15px;
}
.water-drop {
position: absolute;
width: 20px;
height: 20px;
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230ea5e9'%3E%3Cpath d='M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z'/%3E%3C/svg%3E") no-repeat;
animation: drip 3s infinite ease-in-out;
}
@keyframes drip {
0% { transform: translateY(0) scale(1); opacity: 1; }
50% { transform: translateY(20px) scale(0.8); opacity: 0.7; }
100% { transform: translateY(40px) scale(0.6); opacity: 0; }
}
.pipe {
position: absolute;
width: 100px;
height: 20px;
background: repeating-linear-gradient(
45deg,
#94a3b8,
#94a3b8 10px,
#cbd5e1 10px,
#cbd5e1 20px
);
transform: rotate(-20deg);
border-radius: 5px;
}
.castor {
transition: all 0.3s ease;
}
.castor:hover {
transform: translateY(-5px) rotate(-5deg);
}
.btn-orange {
background: #f97316;
transition: all 0.3s ease;
}
.btn-orange:hover {
background: #ea580c;
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}
.btn-blue {
background: #0ea5e9;
transition: all 0.3s ease;
}
.btn-blue:hover {
background: #0284c7;
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.3);
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="bg-white shadow-md">
<div class="container mx-auto px-6 py-3">
<div class="flex items-center justify-between">
<div class="flex items-center">
<img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60'%3E%3Crect width='200' height='60' fill='%230ea5e9' rx='10'/%3E%3Ctext x='100' y='35' font-family='Poppins' font-size='16' font-weight='bold' fill='white' text-anchor='middle'%3EFrance Énergie%3C/text%3E%3Ctext x='100' y='50' font-family='Poppins' font-size='12' fill='white' text-anchor='middle'%3EPlomberie du Val-de-Marne%3C/text%3E%3C/svg%3E"
alt="France Énergie Plomberie du Val-de-Marne" class="h-12">
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#services" class="text-gray-700 hover:text-orange-500 font-medium">Nos Services</a>
<a href="#about" class="text-gray-700 hover:text-orange-500 font-medium">À Propos</a>
<a href="#contact" class="text-gray-700 hover:text-orange-500 font-medium">Contact</a>
<a href="tel:+33123456789" class="bg-blue-500 text-white px-4 py-2 rounded-full font-bold hover:bg-blue-600 transition">
<i class="fas fa-phone mr-2"></i>01 23 45 67 89
</a>
</div>
<div class="md:hidden">
<button class="text-gray-700 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="relative overflow-hidden bg-gradient-to-b from-blue-50 to-white">
<div class="container mx-auto px-6 py-16 md:py-24">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 leading-tight mb-6">
Votre <span class="text-orange-500">plombier</span> de confiance
<br>dans le <span class="text-blue-500">Val-de-Marne</span>
</h1>
<p class="text-lg text-gray-600 mb-8">
Castor et son équipe sont à votre service 7j/7 pour toutes vos urgences plomberie.
Intervention rapide, devis gratuit et travail soigné garantis !
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#contact" class="btn-orange text-white px-8 py-3 rounded-full font-bold text-center">
<i class="fas fa-tools mr-2"></i> Demander un devis
</a>
<a href="tel:+33123456789" class="btn-blue text-white px-8 py-3 rounded-full font-bold text-center">
<i class="fas fa-phone mr-2"></i> Urgence plomberie
</a>
</div>
<!-- Bulles de messages -->
<div class="relative mt-12">
<div class="bubble absolute left-0 -top-20">
<p class="text-sm font-medium text-gray-700">Intervention rapide 7j/7</p>
</div>
<div class="bubble absolute left-40 -top-10">
<p class="text-sm font-medium text-gray-700">Devis gratuit</p>
</div>
<div class="bubble absolute left-20 top-10">
<p class="text-sm font-medium text-gray-700">Plombier de confiance</p>
</div>
</div>
</div>
<div class="md:w-1/2 relative">
<!-- Mascotte Castor -->
<div class="castor relative z-10 mx-auto" style="max-width: 400px;">
<img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cstyle%3E.beaver-body%7Bfill:%23a16207%7D.beaver-fur%7Bfill:%238c6b2a%7D.overalls%7Bfill:%230ea5e9%7D.tool%7Bfill:%234b5563%7D%3C/style%3E%3Ccircle cx='200' cy='150' r='100' class='beaver-body'/%3E%3Cellipse cx='150' cy='120' rx='30' ry='25' fill='white'/%3E%3Cellipse cx='150' cy='120' rx='15' ry='12' fill='black'/%3E%3Cellipse cx='250' cy='120' rx='30' ry='25' fill='white'/%3E%3Cellipse cx='250' cy='120' rx='15' ry='12' fill='black'/%3E%3Cpath d='M180 170 Q200 190 220 170' stroke='black' stroke-width='3' fill='none'/%3E%3Cpath d='M150 200 L150 250 L170 300 L230 300 L250 250 L250 200' class='beaver-body'/%3E%3Cpath d='M170 300 L170 350 L180 350 L180 300 M230 300 L230 350 L220 350 L220 300' class='beaver-fur'/%3E%3Cpath d='M150 220 L130 230 L120 210 M250 220 L270 230 L280 210' class='beaver-fur'/%3E%3Cpath d='M170 220 L170 280 L230 280 L230 220' class='overalls'/%3E%3Cpath d='M170 220 L200 200 L230 220' class='overalls'/%3E%3Crect x='190' y='240' width='20' height='40' class='overalls'/%3E%3Ccircle cx='200' cy='200' r='10' fill='%23f97316'/%3E%3Cpath d='M230 250 L280 230 L270 210' class='tool'/%3E%3Crect x='265' y='205' width='20' height='5' transform='rotate(30 265 205)' class='tool'/%3E%3C/svg%3E"
alt="Castor le plombier" class="w-full">
</div>
<!-- Éléments de plomberie décoratifs -->
<div class="pipe absolute -left-10 top-20"></div>
<div class="pipe absolute right-10 bottom-10 transform rotate-15"></div>
<!-- Gouttes d'eau animées -->
<div class="water-drop" style="top: 50px; left: 50px;"></div>
<div class="water-drop" style="top: 80px; left: 120px; animation-delay: 0.5s;"></div>
<div class="water-drop" style="top: 30px; left: 200px; animation-delay: 1s;"></div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-16 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Nos Services de Plomberie</h2>
<div class="w-20 h-1 bg-orange-500 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="bg-blue-50 rounded-xl p-8 shadow-lg hover:shadow-xl transition">
<div class="text-blue-500 text-4xl mb-4">
<i class="fas fa-faucet"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Dépannage urgent</h3>
<p class="text-gray-600">
Fuites, canalisations bouchées, chauffe-eau en panne... Nous intervenons rapidement pour régler vos problèmes.
</p>
</div>
<!-- Service 2 -->
<div class="bg-orange-50 rounded-xl p-8 shadow-lg hover:shadow-xl transition">
<div class="text-orange-500 text-4xl mb-4">
<i class="fas fa-bath"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Installation sanitaire</h3>
<p class="text-gray-600">
Salle de bain, cuisine, WC... Nous installons et rénovons vos équipements avec soin et professionnalisme.
</p>
</div>
<!-- Service 3 -->
<div class="bg-blue-50 rounded-xl p-8 shadow-lg hover:shadow-xl transition">
<div class="text-blue-500 text-4xl mb-4">
<i class="fas fa-thermometer-half"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Chauffage</h3>
<p class="text-gray-600">
Installation, entretien et réparation de chaudières, radiateurs et planchers chauffants.
</p>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-gray-50">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 400'%3E%3Cstyle%3E.beaver-team%7Bfill:%23a16207%7D.overalls-team%7Bfill:%230ea5e9%7D.tool-team%7Bfill:%234b5563%7D%3C/style%3E%3Crect x='50' y='200' width='400' height='200' fill='%23e2e8f0' rx='20'/%3E%3Ccircle cx='150' cy='150' r='80' class='beaver-team'/%3E%3Ccircle cx='350' cy='150' r='80' class='beaver-team'/%3E%3Cpath d='M150 230 L150 280 L180 330 L320 330 L350 280 L350 230' class='beaver-team'/%3E%3Cpath d='M180 330 L180 350 L200 350 L200 330 M320 330 L320 350 L300 350 L300 330' class='beaver-team'/%3E%3Cpath d='M180 250 L180 300 L320 300 L320 250' class='overalls-team'/%3E%3Cpath d='M180 250 L250 220 L320 250' class='overalls-team'/%3E%3Crect x='220' y='270' width='60' height='30' class='overalls-team'/%3E%3Cpath d='M320 270 L370 250 L360 230' class='tool-team'/%3E%3Cpath d='M180 270 L130 250 L140 230' class='tool-team'/%3E%3C/svg%3E"
alt="L'équipe de France Énergie Plomberie" class="w-full max-w-md mx-auto">
</div>
<div class="md:w-1/2 md:pl-12">
<h2 class="text-3xl font-bold text-gray-800 mb-6">À propos de France Énergie Plomberie</h2>
<p class="text-gray-600 mb-6">
Fondée en 2010, France Énergie Plomberie est une entreprise familiale implantée dans le Val-de-Marne.
Notre mascotte Castor symbolise notre engagement : travailleur, fiable et toujours à l'écoute de vos besoins.
</p>
<p class="text-gray-600 mb-6">
Notre équipe de plombiers qualifiés intervient chez les particuliers et professionnels pour tous types de travaux,
de la simple réparation à l'installation complète.
</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="text-orange-500 mr-4 mt-1">
<i class="fas fa-check-circle text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Plombiers certifiés</h4>
<p class="text-gray-600">Tous nos artisans sont diplômés et assurés.</p>
</div>
</div>
<div class="flex items-start">
<div class="text-blue-500 mr-4 mt-1">
<i class="fas fa-clock text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Disponibilité 7j/7</h4>
<p class="text-gray-600">Nous intervenons même les week-ends et jours fériés.</p>
</div>
</div>
<div class="flex items-start">
<div class="text-orange-500 mr-4 mt-1">
<i class="fas fa-euro-sign text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Devis gratuit</h4>
<p class="text-gray-600">Évaluation sans engagement de votre part.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Ce que disent nos clients</h2>
<div class="w-20 h-1 bg-blue-500 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Témoignage 1 -->
<div class="bg-gray-50 rounded-xl p-8 shadow-lg">
<div class="flex items-center mb-4">
<div class="text-orange-500 text-2xl mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-600 italic mb-6">
"Intervention rapide pour une fuite sous l'évier. Castor est arrivé en 30 minutes et a tout réparé avec le sourire. Je recommande !"
</p>
<div class="flex items-center">
<div class="bg-blue-100 text-blue-500 rounded-full w-12 h-12 flex items-center justify-center mr-4">
<i class="fas fa-user text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Martine D.</h4>
<p class="text-gray-500 text-sm">Vitry-sur-Seine</p>
</div>
</div>
</div>
<!-- Témoignage 2 -->
<div class="bg-gray-50 rounded-xl p-8 shadow-lg">
<div class="flex items-center mb-4">
<div class="text-orange-500 text-2xl mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-600 italic mb-6">
"Très professionnel et sympathique. Devis respecté, travail soigné. J'ai fait appel à eux pour rénover ma salle de bain et je suis ravi du résultat."
</p>
<div class="flex items-center">
<div class="bg-blue-100 text-blue-500 rounded-full w-12 h-12 flex items-center justify-center mr-4">
<i class="fas fa-user text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Jean-Luc T.</h4>
<p class="text-gray-500 text-sm">Choisy-le-Roi</p>
</div>
</div>
</div>
<!-- Témoignage 3 -->
<div class="bg-gray-50 rounded-xl p-8 shadow-lg">
<div class="flex items-center mb-4">
<div class="text-orange-500 text-2xl mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<p class="text-gray-600 italic mb-6">
"Un dimanche après-midi, chaudière en panne. Appelé France Énergie, technicien arrivé dans l'heure. Problème résolu rapidement. Merci !"
</p>
<div class="flex items-center">
<div class="bg-blue-100 text-blue-500 rounded-full w-12 h-12 flex items-center justify-center mr-4">
<i class="fas fa-user text-xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Sophie K.</h4>
<p class="text-gray-500 text-sm">Ivry-sur-Seine</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-gradient-to-b from-blue-500 to-blue-600 text-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Contactez Castor et son équipe</h2>
<p class="text-blue-100 max-w-2xl mx-auto">
Besoin d'un plombier dans le Val-de-Marne ? Remplissez le formulaire ou appelez-nous directement.
Nous vous répondons dans les plus brefs délais.
</p>
</div>
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-12 md:mb-0 md:pr-8">
<form class="space-y-6">
<div>
<label for="name" class="block text-sm font-medium mb-1">Votre nom</label>
<input type="text" id="name" class="w-full px-4 py-3 rounded-lg bg-blue-400 bg-opacity-20 border border-blue-300 focus:border-white focus:outline-none placeholder-blue-200">
</div>
<div>
<label for="email" class="block text-sm font-medium mb-1">Votre email</label>
<input type="email" id="email" class="w-full px-4 py-3 rounded-lg bg-blue-400 bg-opacity-20 border border-blue-300 focus:border-white focus:outline-none placeholder-blue-200">
</div>
<div>
<label for="phone" class="block text-sm font-medium mb-1">Votre téléphone</label>
<input type="tel" id="phone" class="w-full px-4 py-3 rounded-lg bg-blue-400 bg-opacity-20 border border-blue-300 focus:border-white focus:outline-none placeholder-blue-200">
</div>
<div>
<label for="message" class="block text-sm font-medium mb-1">Votre message</label>
<textarea id="message" rows="4" class="w-full px-4 py-3 rounded-lg bg-blue-400 bg-opacity-20 border border-blue-300 focus:border-white focus:outline-none placeholder-blue-200"></textarea>
</div>
<button type="submit" class="btn-orange w-full px-6 py-3 rounded-lg font-bold text-white">
<i class="fas fa-paper-plane mr-2"></i> Envoyer la demande
</button>
</form>
</div>
<div class="md:w-1/2 md:pl-8">
<div class="bg-white bg-opacity-10 rounded-xl p-8 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="text-orange-300 text-2xl mr-4">
<i class="fas fa-map-marker-alt"></i>
</div>
<div>
<h4 class="font-bold">Adresse</h4>
<p class="text-blue-100">12 Rue des Plombiers<br>94000 Créteil</p>
</div>
</div>
<div class="flex items-start">
<div class="text-orange-300 text-2xl mr-4">
<i class="fas fa-phone-alt"></i>
</div>
<div>
<h4 class="font-bold">Téléphone</h4>
<p class="text-blue-100">01 23 45 67 89</p>
<p class="text-blue-100 text-sm">Urgence 7j/7 - 24h/24</p>
</div>
</div>
<div class="flex items-start">
<div class="text-orange-300 text-2xl mr-4">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4 class="font-bold">Email</h4>
<p class="text-blue-100">[email protected]</p>
</div>
</div>
<div class="flex items-start">
<div class="text-orange-300 text-2xl mr-4">
<i class="fas fa-clock"></i>
</div>
<div>
<h4 class="font-bold">Horaires</h4>
<p class="text-blue-100">Lundi au vendredi : 8h-19h<br>
Samedi : 9h-18h<br>
Dimanche : Urgences uniquement</p>
</div>
</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="flex flex-col md:flex-row justify-between">
<div class="mb-8 md:mb-0">
<img src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60'%3E%3Crect width='200' height='60' fill='white' rx='10'/%3E%3Ctext x='100' y='35' font-family='Poppins' font-size='16' font-weight='bold' fill='%230ea5e9' text-anchor='middle'%3EFrance Énergie%3C/text%3E%3Ctext x='100' y='50' font-family='Poppins' font-size='12' fill='%23f97316' text-anchor='middle'%3EPlomberie du Val-de-Marne%3C/text%3E%3C/svg%3E"
alt="France Énergie Plomberie du Val-de-Marne" class="h-10 mb-4">
<p class="text-gray-400 max-w-xs">
Votre plombier de confiance dans le Val-de-Marne. Interventions rapides, devis gratuits et travail soigné.
</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-8">
<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-orange-400">Dépannage plomberie</a></li>
<li><a href="#" class="text-gray-400 hover:text-orange-400">Installation sanitaire</a></li>
<li><a href="#" class="text-gray-400 hover:text-orange-400">Chauffage</a></li>
<li><a href="#" class="text-gray-400 hover:text-orange-400">Débouchage canalisation</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Entreprise</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-orange-400">À propos</a></li>
<li><a href="#" class="text-gray-400 hover:text-orange-400">L'équipe</a></li>
<li><a href="#" class="text-gray-400 hover:text-orange-400">Zone d'intervention</a></li>
<li><a href="#" class="text-gray-400 hover:text-orange-400">Devis en ligne</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Légal</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-orange-400">Mentions légales</a></li>
<li><a href="#" class="text-gray-400 hover:text-orange-400">CGV</a></li>
<li><a href="#" class="text-gray-400 hover:text-orange-400">Politique de confidentialité</a></li>
<li><a href="#" class="text-gray-400 hover:text-orange-400">Cookies</a></li>
</ul>
</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">
&copy; 2023 France Énergie Plomberie du Val-de-Marne. Tous droits réservés.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-orange-400 text-xl">
<i class="fab fa-facebook"></i>
</a>
<a href="#" class="text-gray-400 hover:text-orange-400 text-xl">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-orange-400 text-xl">
<i class="fab fa-twitter"></i>
</a>
</div>
</div>
</div>
</footer>
<!-- Floating action button -->
<a href="tel:+33123456789" class="fixed bottom-6 right-6 bg-orange-500 text-white w-16 h-16 rounded-full flex items-center justify-center shadow-xl hover:bg-orange-600 transition z-50">
<i class="fas fa-phone text-2xl"></i>
</a>
<script>
// Animation for water drops
function createWaterDrops() {
const heroSection = document.querySelector('section.bg-gradient-to-b');
for (let i = 0; i < 8; i++) {
const drop = document.createElement('div');
drop.className = 'water-drop';
drop.style.left = `${Math.random() * 100}%`;
drop.style.top = `${Math.random() * 50}%`;
drop.style.animationDelay = `${Math.random() * 2}s`;
heroSection.appendChild(drop);
}
}
document.addEventListener('DOMContentLoaded', function() {
createWaterDrops();
// 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'
});
});
});
});
</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=Adamchab/france-nergie" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>