diff --git a/templates/index.html b/templates/index.html index 3f46e26..e6873b5 100644 --- a/templates/index.html +++ b/templates/index.html @@ -117,6 +117,13 @@ 0%, 100% { opacity:1; } 50% { opacity:0.5; } } + .hurry-text { font-size:11px; color:#ef4444; font-weight:600; margin-top:6px; animation: shake 0.5s ease-in-out infinite; } + @keyframes shake { + 0%, 100% { transform:translateX(0); } + 25% { transform:translateX(-2px); } + 75% { transform:translateX(2px); } + } + .btn-shake { animation: shake 0.6s ease-in-out infinite; } /* Why */ .reasons { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:24px; } @@ -341,9 +348,9 @@ async function loadPricing() { const specs = { fr: { "Rif": ["Mini PC", "512 Go SSD", "8 Go RAM", "Appli photos + fichiers", "Installation incluse"], - "Rif+": ["Mini PC", "512 Go SSD", "8 Go RAM", "Appli photos + fichiers", '+ Sauvegarde automatique 1 To', "Installation incluse"], + "Rif+": ["Mini PC", "512 Go SSD", "8 Go RAM", "Appli photos + fichiers", '+ Backup automatique 1 To', "Installation incluse"], "Atlas": ["Mini PC", "1 To SSD", "16 Go RAM", "Appli photos + fichiers", "Installation incluse"], - "Atlas+": ["Mini PC", "1 To SSD", "16 Go RAM", "Appli photos + fichiers", '+ Sauvegarde redondante 1 To', "Installation incluse"] + "Atlas+": ["Mini PC", "1 To SSD", "16 Go RAM", "Appli photos + fichiers", '+ Backup redondant 1 To', "Installation incluse"] }, en: { "Rif": ["Mini PC", "512 GB SSD", "8 GB RAM", "Photo + file apps", "Installation included"], @@ -371,8 +378,9 @@ async function loadPricing() { const isAtlas = t.name === 'Atlas'; const priceHTML = isAtlas ? `
Pricing unavailable
'; }