SectionCard
AppTitled content card with rounded-xl + border + bg-surface-raised + p-6. Header is separated by an underline; children slot accepts arbitrary content.
Preferences
Form fields go here.
<SectionCard title="Preferences">
<Input id="name" label="Display name" value={name} onChange={...} />
<Toggle id="notify" label="Email notifications" checked={notify} onChange={setNotify} />
</SectionCard>Profile
Personal information fields.
Security
Password change form.
<SectionCard title="Profile">
<UserProfileForm ... />
</SectionCard>
<SectionCard title="Security">
<ChangePasswordForm ... />
</SectionCard>