From 63e0ca85de085d1d50394195a4999e73f7c8a41f Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 8 Nov 2025 10:45:49 +0000 Subject: [PATCH] Add RealmSelection import to Onboarding cgen-9a7f402a43534eda882395853d688a18 --- client/pages/Onboarding.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/pages/Onboarding.tsx b/client/pages/Onboarding.tsx index 72fab540..0eaacb4a 100644 --- a/client/pages/Onboarding.tsx +++ b/client/pages/Onboarding.tsx @@ -7,6 +7,7 @@ import UserTypeSelection from "@/components/onboarding/UserTypeSelection"; import PersonalInfo from "@/components/onboarding/PersonalInfo"; import Experience from "@/components/onboarding/Experience"; import Interests from "@/components/onboarding/Interests"; +import RealmSelection from "@/components/onboarding/RealmSelection"; import CreatorProfile from "@/components/onboarding/CreatorProfile"; import Welcome from "@/components/onboarding/Welcome"; import { useAuth } from "@/contexts/AuthContext"; @@ -86,6 +87,7 @@ export default function Onboarding() { { title: "Personal Information", component: PersonalInfo }, { title: "Experience Level", component: Experience }, { title: "Interests & Goals", component: Interests }, + { title: "Choose Your Realm", component: RealmSelection }, { title: "Creator Profile Setup", component: CreatorProfile }, { title: "Welcome to AeThex", component: Welcome }, ];