Competition/Round architecture: full platform rewrite (Phases 1-9)
All checks were successful
Build and Push Docker Image / build (push) Successful in 7m45s

Replace Pipeline/Stage system with Competition/Round architecture.
New schema: Competition, Round (7 types), JuryGroup, AssignmentPolicy,
ProjectRoundState, DeliberationSession, ResultLock, SubmissionWindow.
New services: round-engine, round-assignment, deliberation, result-lock,
submission-manager, competition-context, ai-prompt-guard.
Full admin/jury/applicant/mentor UI rewrite. AI prompt hardening with
structured prompts, retry logic, and injection detection. All legacy
pipeline/stage code removed. 4 new migrations + seed aligned.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-15 23:04:15 +01:00
parent 9ab4717f96
commit 6ca39c976b
349 changed files with 69938 additions and 28767 deletions

View File

@@ -0,0 +1,51 @@
'use client';
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
import { Button } from '@/components/ui/button';
import { Badge } from '@/components/ui/badge';
import { CheckCircle2, ThumbsUp } from 'lucide-react';
interface Project {
id: string;
title: string;
category?: string;
}
interface AudienceVoteCardProps {
project: Project;
onVote: () => void;
hasVoted: boolean;
}
export function AudienceVoteCard({ project, onVote, hasVoted }: AudienceVoteCardProps) {
return (
<Card className="mx-auto max-w-2xl">
<CardHeader>
<CardTitle className="text-2xl sm:text-3xl">{project.title}</CardTitle>
{project.category && (
<CardDescription className="mt-2">
<Badge className="text-sm">{project.category}</Badge>
</CardDescription>
)}
</CardHeader>
<CardContent className="space-y-6">
{hasVoted ? (
<div className="flex flex-col items-center justify-center py-8">
<CheckCircle2 className="mb-4 h-16 w-16 text-green-600" />
<p className="text-xl font-medium">Thank You for Voting!</p>
<p className="mt-2 text-sm text-muted-foreground">Your vote has been recorded</p>
</div>
) : (
<Button
onClick={onVote}
size="lg"
className="w-full bg-[#de0f1e] py-8 text-lg font-semibold hover:bg-[#de0f1e]/90 sm:text-xl"
>
<ThumbsUp className="mr-3 h-6 w-6" />
Vote for This Project
</Button>
)}
</CardContent>
</Card>
);
}