diff --git a/src/components/Dashboard/DashboardAiRoadmaps.tsx b/src/components/Dashboard/DashboardAiRoadmaps.tsx new file mode 100644 index 000000000..5da40545f --- /dev/null +++ b/src/components/Dashboard/DashboardAiRoadmaps.tsx @@ -0,0 +1,78 @@ +import type { UserProgress } from '../TeamProgress/TeamProgressPage'; +import { DashboardCustomProgressCard } from './DashboardCustomProgressCard'; +import { DashboardCardLink } from './DashboardCardLink'; +import { useState } from 'react'; +import { CreateRoadmapModal } from '../CustomRoadmap/CreateRoadmap/CreateRoadmapModal'; +import { Simulate } from 'react-dom/test-utils'; +import { Bot, BrainCircuit, Map, PencilRuler } from 'lucide-react'; + +type DashboardAiRoadmapsProps = { + roadmaps: { + id: string; + title: string; + slug: string; + }[]; + isLoading?: boolean; +}; + +export function DashboardAiRoadmaps(props: DashboardAiRoadmapsProps) { + const { roadmaps, isLoading = false } = props; + + return ( + <> +