For more Private Tools DM:
https://t.me/Professor6T9x
/
home
/
mspfmsm
/
foodtruck-reims
/
Upload File
HOME
<!doctype html> <html lang="fr"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="robots" content="noindex, nofollow" /> <title>Bientôt en ligne</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #0f0c29; background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); font-family: "Segoe UI", sans-serif; color: #fff; text-align: center; padding: 2rem; } .container { max-width: 600px; } .badge { display: inline-block; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50px; padding: 0.4rem 1.2rem; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2rem; color: #a78bfa; } h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; } h1 span { background: linear-gradient(90deg, #a78bfa, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } p { font-size: 1.1rem; color: rgba(255, 255, 255, 0.65); line-height: 1.7; margin-bottom: 2.5rem; } .dots { display: flex; justify-content: center; gap: 8px; } .dot { width: 10px; height: 10px; border-radius: 50%; background: #a78bfa; animation: pulse 1.4s ease-in-out infinite; } .dot:nth-child(2) { animation-delay: 0.2s; background: #818cf8; } .dot:nth-child(3) { animation-delay: 0.4s; background: #60a5fa; } @keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.4); opacity: 1; } } </style> </head> <body> <div class="container"> <div class="badge">🚀 Bientôt disponible</div> <h1>Notre site est en <span>cours de création</span></h1> <p> Nous travaillons dur pour vous offrir une expérience exceptionnelle. Notre site sera bientôt en ligne — revenez nous voir très prochainement ! </p> <div class="dots"> <div class="dot"></div> <div class="dot"></div> <div class="dot"></div> </div> </div> </body> </html>