'use client' import { motion } from 'framer-motion' import { Lock, Shield, ArrowRight, Sparkles, Zap, Globe } from 'lucide-react' import BackgroundAnimations from '@/components/BackgroundAnimations' export default function Hero() { return (
{/* Animated Grid Background */}
{/* Top Badge */}
Expert Vaultwarden à la Réunion
{/* Main Content - Centered Layout */}
Sécurisez vos mots de passe d'entreprise Hébergement sécurisé, installation NAS et Mini PC. Solutions de gestion de mots de passe pour entreprises 974. {/* CTA Buttons - Horizontal */} Voir nos offres En savoir plus
{/* Stats Grid - 3 Columns */} {[ { icon: Shield, label: 'AES-256', value: 'Chiffrement', color: 'text-security-accent' }, { icon: Lock, label: 'Zero-Knowledge', value: 'Architecture', color: 'text-green-400' }, { icon: Globe, label: 'RGPD', value: 'Conformité 100%', color: 'text-emerald-400' }, ].map((stat, index) => (
{stat.label}
{stat.value}
))}
{/* Bottom Wave */}
) }