@@ -196,6 +196,57 @@ export function TeamDetailView({ team, onBack, onEvaluationSuccess, onVoteSucces
196196 < div className = "grid grid-cols-1 lg:grid-cols-3 gap-6 h-full" >
197197 { /* Left Column: Voting / Evaluation */ }
198198 < div className = "lg:col-span-2 flex flex-col gap-6" >
199+ { /* Submission Artifacts */ }
200+ { /* <FormSection title="Submission Artifacts">
201+ <div className="flex flex-col gap-4">
202+ <div className="flex gap-4 flex-wrap">
203+ {team.videoURL && (
204+ <a
205+ href={team.videoURL}
206+ target="_blank"
207+ rel="noopener noreferrer"
208+ className="flex items-center gap-2 px-4 py-3 bg-red-600/10 text-red-400 border border-red-600/20 rounded-lg hover:bg-red-600/20 transition-colors"
209+ style={{ fontFamily: 'var(--font-body)' }}
210+ >
211+ <Youtube className="w-5 h-5" />
212+ Watch Video Pitch
213+ <ExternalLink className="w-3 h-3 ml-1 opacity-50" />
214+ </a>
215+ )}
216+ {team.submissionPDF ? (
217+ <a
218+ href={team.submissionPDF}
219+ target="_blank"
220+ rel="noopener noreferrer"
221+ className="flex items-center gap-2 px-4 py-3 bg-white/5 text-white border border-white/10 rounded-lg hover:bg-white/10 transition-colors"
222+ style={{ fontFamily: 'var(--font-body)' }}
223+ >
224+ <FileText className="w-5 h-5" />
225+ View Submission PDF
226+ <ExternalLink className="w-3 h-3 ml-1 opacity-50" />
227+ </a>
228+ ) : (
229+ <div className="flex items-center gap-2 px-4 py-3 bg-white/5 border border-white/10 rounded-lg text-white/40 cursor-not-allowed">
230+ <FileText className="w-5 h-5 opacity-50" />
231+ No PDF Submission
232+ </div>
233+ )}
234+ {team.anyOtherLink && (
235+ <a
236+ href={team.anyOtherLink}
237+ target="_blank"
238+ rel="noopener noreferrer"
239+ className="flex items-center gap-2 px-4 py-3 bg-blue-600/10 text-blue-400 border border-blue-600/20 rounded-lg hover:bg-blue-600/20 transition-colors"
240+ style={{ fontFamily: 'var(--font-body)' }}
241+ >
242+ <ExternalLink className="w-5 h-5" />
243+ Additional Link
244+ </a>
245+ )}
246+ </div>
247+ </div>
248+ </FormSection> */ }
249+
199250 { /* Official Evaluation / Community Vote Form*/ }
200251 < FormSection title = { isAssigned ? "Official Evaluation" : "Community Vote" } >
201252 < div className = "flex flex-col gap-6" >
0 commit comments