diff --git a/src/components/Projects/ListProjectSolutions.tsx b/src/components/Projects/ListProjectSolutions.tsx index c691084be..18e02f1fa 100644 --- a/src/components/Projects/ListProjectSolutions.tsx +++ b/src/components/Projects/ListProjectSolutions.tsx @@ -3,7 +3,13 @@ import { useToast } from '../../hooks/use-toast'; import { httpGet, httpPost } from '../../lib/http'; import { LoadingSolutions } from './LoadingSolutions'; import { EmptySolutions } from './EmptySolutions'; -import { ArrowDown, ArrowUp, CalendarCheck } from 'lucide-react'; +import { + ArrowDown, + ArrowUp, + CalendarCheck, + ThumbsDown, + ThumbsUp, +} from 'lucide-react'; import { getRelativeTimeString } from '../../lib/date'; import { Pagination } from '../Pagination/Pagination'; import { deleteUrlParam, getUrlParams, setUrlParams } from '../../lib/browser'; @@ -12,6 +18,9 @@ import { cn } from '../../lib/classname'; import { LeavingRoadmapWarningModal } from './LeavingRoadmapWarningModal'; import { isLoggedIn } from '../../lib/jwt'; import { showLoginPopup } from '../../lib/popup'; +import { CheckIcon } from '../ReactIcons/CheckIcon.tsx'; +import { VoteButton } from './VoteButton.tsx'; +import { GitHubIcon } from '../ReactIcons/GitHubIcon.tsx'; export interface ProjectStatusDocument { _id?: string; @@ -63,6 +72,30 @@ type ListProjectSolutionsProps = { projectId: string; }; +const submittedAlternatives = [ + 'submitted their solution', + 'got it done', + 'submitted their take', + 'finished the project', + 'submitted their work', + 'completed the project', + 'got it done', + 'delivered their project', + 'handed in their solution', + 'provided their deliverables', + 'submitted their approach', + 'sent in their project', + 'presented their take', + 'shared their completed task', + 'submitted their approach', + 'completed it', + 'finalized their solution', + 'delivered their approach', + 'turned in their project', + 'submitted their final draft', + 'delivered their solution', +]; + export function ListProjectSolutions(props: ListProjectSolutionsProps) { const { projectId } = props; @@ -220,72 +253,72 @@ export function ListProjectSolutions(props: ListProjectSolutionsProps) { }} /> -
@@ -272,7 +272,7 @@ export function SubmitProjectModal(props: SubmitProjectModalProps) {