diff --git a/src/components/Dashboard/DashboardPage.tsx b/src/components/Dashboard/DashboardPage.tsx index 0dd5789f8..c696457bc 100644 --- a/src/components/Dashboard/DashboardPage.tsx +++ b/src/components/Dashboard/DashboardPage.tsx @@ -64,6 +64,7 @@ export function DashboardPage(props: DashboardPageProps) { {isLoading && ( <> + )} @@ -96,7 +97,7 @@ export function DashboardPage(props: DashboardPageProps) { label="+ Create Team" isActive={false} href="/team/new" - className="border bg-transparent border-dashed text-gray-500 border-gray-300 text-sm px-3 hover:border-gray-600 hover:text-black" + className="border bg-transparent border-dashed text-gray-500 border-gray-300 text-sm px-3 hover:border-gray-600 hover:text-black text-[13px]" /> )} @@ -117,6 +118,6 @@ export function DashboardPage(props: DashboardPageProps) { function DashboardTabSkeleton() { return ( -
+
); } diff --git a/src/components/Dashboard/PersonalDashboard.tsx b/src/components/Dashboard/PersonalDashboard.tsx index 9430bd502..1436893e5 100644 --- a/src/components/Dashboard/PersonalDashboard.tsx +++ b/src/components/Dashboard/PersonalDashboard.tsx @@ -182,7 +182,7 @@ export function PersonalDashboard(props: PersonalDashboardProps) { const recommendedRoadmapIds = new Set( relatedRoadmapIds.length === 0 - ? ['frontend', 'backend', 'devops', 'ai-data-scientist', 'full-stack'] + ? ['frontend', 'backend', 'devops', 'ai-data-scientist', 'full-stack', 'api-design'] : relatedRoadmapIds, ); @@ -242,21 +242,21 @@ export function PersonalDashboard(props: PersonalDashboardProps) { diff --git a/src/components/Dashboard/RecommendedRoadmaps.tsx b/src/components/Dashboard/RecommendedRoadmaps.tsx index 73c380171..652e4b999 100644 --- a/src/components/Dashboard/RecommendedRoadmaps.tsx +++ b/src/components/Dashboard/RecommendedRoadmaps.tsx @@ -1,5 +1,6 @@ import type { BuiltInRoadmap } from './PersonalDashboard'; import { ArrowUpRight } from 'lucide-react'; +import { MarkFavorite } from '../FeaturedItems/MarkFavorite.tsx'; type RecommendedRoadmapsProps = { roadmaps: BuiltInRoadmap[]; @@ -11,23 +12,23 @@ export function RecommendedRoadmaps(props: RecommendedRoadmapsProps) { return ( <> -
+

Recommended Roadmaps

- + All Roadmaps
{isLoading ? (
- {Array.from({ length: 12 }).map((_, index) => ( + {Array.from({ length: 9 }).map((_, index) => ( ))}
@@ -38,6 +39,10 @@ export function RecommendedRoadmaps(props: RecommendedRoadmapsProps) { ))}
)} + +
+ Need some help getting started? Check out our{' '}Getting Started Guide. +
); } @@ -53,18 +58,16 @@ export function RecommendedRoadmapCard(props: RecommendedRoadmapCardProps) { return ( - {title} - {description} - - + + {title} ); } function RecommendedCardSkeleton() { return ( -
+
); }