// Security — sign-in protection for the signed-in user's own account:
// authenticator-app 2FA, security keys / passkeys, backup codes. Split out of
// My Preferences (2026-08-02, owner's call) so "how I sign in" and "how the
// app looks" are separate cards. TwoFactorSettings is self-contained (owns
// its status fetch and enrollment flows), so this section just frames it.
const SecuritySection = () => (
    <div>
        <TwoFactorSettings />
    </div>
);
