import { Blocks, CodeXml } from 'lucide-react'; type EmptySolutionsProps = { projectId: string; }; export function EmptySolutions(props: EmptySolutionsProps) { const { projectId } = props; return (

No solutions submitted yet

Be the first to submit a solution for this project

View Project Details
); }