"use client" import { Icon } from "@iconify/react" const ACCENT = "#7C3AED" type Provider = { name: string type: string icon: string brandLogo?: boolean enabled: boolean status: "synced" | "pending" } const PROVIDERS: Provider[] = [ { name: "Google Workspace", type: "OAuth", icon: "logos:google-icon", brandLogo: true, enabled: true, status: "synced" }, { name: "Azure AD / Entra", type: "SAML", icon: "logos:microsoft-icon", brandLogo: true, enabled: true, status: "synced" }, { name: "Active Directory", type: "LDAP", icon: "mdi:server-network", enabled: true, status: "pending" }, { name: "Okta", type: "SAML", icon: "logos:okta-icon", brandLogo: true, enabled: false, status: "pending" }, ] const RESTRICTIONS = ["acme.com", "filiale.fr", "ulti-users", "ulti-admins"] /** Aperçu statique des fournisseurs d'identité (SSO) gérés via Authentik. */ export function AdminIdentityDemo() { return (
{p.name}
{p.type}