"use client" import { Icon } from "@iconify/react" const ACCENT = "#7C3AED" type ServiceProgress = { service: string icon: string imported: number total: number } const SERVICES: ServiceProgress[] = [ { service: "Mail", icon: "mdi:email-outline", imported: 12840, total: 13200 }, { service: "Drive", icon: "mdi:folder-outline", imported: 3420, total: 3900 }, { service: "Contacts", icon: "mdi:card-account-details-outline", imported: 512, total: 512 }, { service: "Agenda", icon: "mdi:calendar-outline", imported: 286, total: 310 }, ] /** Aperçu statique d'un projet de migration Google Workspace / Microsoft 365. */ export function AdminMigrationDemo() { return (
Migration ACME 2026 En cours

Google Workspace + Microsoft 365

OAuth · Google DWD · MS app-only

{SERVICES.map((s) => { const pct = Math.round((s.imported / s.total) * 100) return (
{s.service} {s.imported.toLocaleString("fr-FR")} / {s.total.toLocaleString("fr-FR")}
) })}
Bascule MX TXT MX DNS vérifié · prêt au cutover

Aperçu statique — import, suivi des jobs, audit par utilisateur et bascule MX progressive.

) }