import { useTranslation } from "react-i18next"; import { Fingerprint, KeyRound, ShieldCheck, Users } from "lucide-react"; const ITEMS = [ { icon: KeyRound, key: "credentials" }, { icon: ShieldCheck, key: "twofa" }, { icon: Fingerprint, key: "identity" }, { icon: Users, key: "sharing" }, ] as const; /** * Credential reuse and 2FA are the two things worth knowing before someone * types a password into a host form, so they get their own step rather than a * line buried in the feature list. */ export function SecurityStep() { const { t } = useTranslation(); return (
{t("onboarding.securityIntro")}
{t("onboarding.securityEncryptionNote")}