20 lines
602 B
TypeScript
20 lines
602 B
TypeScript
|
|
/**
|
|||
|
|
* Check-in station – search bidders, scan QR, assign paddle, confirm payment readiness.
|
|||
|
|
*
|
|||
|
|
* TODO:
|
|||
|
|
* - Search /api/bidders?eventId=&q=
|
|||
|
|
* - QR scanner via device camera
|
|||
|
|
* - POST /api/check-in/:id on confirm
|
|||
|
|
* - Show payment-on-file indicator
|
|||
|
|
*/
|
|||
|
|
export default function CheckInPage() {
|
|||
|
|
return (
|
|||
|
|
<main className="p-4 space-y-4">
|
|||
|
|
<h1 className="text-2xl font-bold">Check-In</h1>
|
|||
|
|
<div className="border border-dashed border-gray-300 rounded-xl p-8 text-center text-gray-400 text-sm">
|
|||
|
|
QR scan & bidder search — not yet implemented
|
|||
|
|
</div>
|
|||
|
|
</main>
|
|||
|
|
);
|
|||
|
|
}
|