This commit is contained in:
eric
2026-03-12 19:52:34 -05:00
parent 4a223cd788
commit e5d080c202
18 changed files with 635 additions and 158 deletions

View File

@@ -2,11 +2,7 @@
import { WelcomeBlock } from "./dashboard/WelcomeBlock";
import { UnlockedStats } from "./dashboard/UnlockedStats";
import { RecentUpdates } from "./dashboard/RecentUpdates";
import { ContinueLearning } from "./dashboard/ContinueLearning";
import { TopicEbookShowcase } from "./landing/TopicEbookShowcase";
import { CommunityHighlights } from "./dashboard/CommunityHighlights";
import { WeeklyActions } from "./dashboard/WeeklyActions";
type DashboardPageProps = {
userName: string | null;
@@ -17,11 +13,7 @@ export function DashboardPage({ userName }: DashboardPageProps) {
<>
<WelcomeBlock userName={userName} />
<UnlockedStats />
<ContinueLearning />
<RecentUpdates />
<TopicEbookShowcase />
<CommunityHighlights />
<WeeklyActions />
</>
);
}