Add emails and auth page for dashboard account settings.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Developing-Gamer 2026-05-27 12:47:51 -07:00
parent 77b10a8255
commit adbf61b539

View File

@ -0,0 +1,20 @@
import { PageLayout } from "../page-layout";
import { EmailsSection } from "./emails-section";
import { MfaSection } from "./mfa-section";
import { OtpSection } from "./otp-section";
import { PasskeySection } from "./passkey-section";
import { PasswordSection } from "./password-section";
export function EmailsAndAuthPage(props?: {
mockMode?: boolean,
}) {
return (
<PageLayout>
<EmailsSection mockMode={props?.mockMode}/>
<PasswordSection mockMode={props?.mockMode} />
<PasskeySection mockMode={props?.mockMode} />
<OtpSection mockMode={props?.mockMode} />
<MfaSection mockMode={props?.mockMode} />
</PageLayout>
);
}