diff --git a/app/(pages)/(hackers)/_components/TableNumberCheckin/ConfirmStage.tsx b/app/(pages)/(hackers)/_components/TableNumberCheckin/ConfirmStage.tsx new file mode 100644 index 000000000..c178a0f1c --- /dev/null +++ b/app/(pages)/(hackers)/_components/TableNumberCheckin/ConfirmStage.tsx @@ -0,0 +1,98 @@ +'use client'; + +import Link from 'next/link'; +import Image from 'next/image'; +import mapIcon from '@public/hackers/table-number-checkin/map.svg'; +import checkmarkIcon from '@public/hackers/table-number-checkin/check.svg'; + +interface ConfirmStageProps { + tableNumber: string | null; + onConfirm: () => void; + onReset: () => void; +} + +export default function ConfirmStage({ + tableNumber, + onConfirm, + onReset, +}: ConfirmStageProps) { + return ( +
+ Check that you and your team members received the same table number. + It is extremely important to be + present at your table when + the judges arrive. +
+ ++ DEVPOST NUMBER +
+ { + const val = e.target.value.replace(/\D/g, '').slice(0, 5); + onChange(val); + }} + /> ++ Please double check you have entered the same number listed on + Devpost. +
+ ) : ( ++ This can be found by going to{' '} + + hackdavis-2026.devpost.com/tables + {' '} + and finding your project submission name. Enter the number exactly + as it is presented. +
+ )} ++ Thank you for all your hard work. Next, please follow the directions + to find your assigned table number. +
++ DEVPOST NUMBER +
+ + ++ Did you know that this year is HackDavis's 10 year anniversary? +
+- Thank you for all your hard work during the past 24 hours, HackDavis - recognizes your passion and talent. Please enter in the team number - you received from Devpost. -
-- Please wait patiently while we match you to a judging table. Btw did - you know next year will be HackDavis's 10 year anniversary? -
-- Check that you and your team members received the same table - number. It is extremely important to be{' '} - present at your table when the judges arrive. -
-