From adbf61b539b91ed46838851b0c4fd711e99e67ac Mon Sep 17 00:00:00 2001 From: Developing-Gamer Date: Wed, 27 May 2026 12:47:51 -0700 Subject: [PATCH] Add emails and auth page for dashboard account settings. Co-authored-by: Cursor --- .../email-and-auth/email-and-auth-page.tsx | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 apps/dashboard/src/components/dashboard-account-settings/email-and-auth/email-and-auth-page.tsx diff --git a/apps/dashboard/src/components/dashboard-account-settings/email-and-auth/email-and-auth-page.tsx b/apps/dashboard/src/components/dashboard-account-settings/email-and-auth/email-and-auth-page.tsx new file mode 100644 index 000000000..a3fb17122 --- /dev/null +++ b/apps/dashboard/src/components/dashboard-account-settings/email-and-auth/email-and-auth-page.tsx @@ -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 ( + + + + + + + + ); +}