15 lines
494 B
TypeScript
15 lines
494 B
TypeScript
|
|
/**
|
|||
|
|
* Bidder profile – paddle number, contact info, digital paddle QR, notifications prefs.
|
|||
|
|
* TODO: fetch /api/bidders/me, render paddle QR code.
|
|||
|
|
*/
|
|||
|
|
export default function ProfilePage() {
|
|||
|
|
return (
|
|||
|
|
<main className="p-4 space-y-4">
|
|||
|
|
<h1 className="text-xl font-bold">Profile</h1>
|
|||
|
|
<div className="border border-dashed border-gray-300 rounded-xl p-8 text-center text-gray-400 text-sm">
|
|||
|
|
Profile & digital paddle — not yet implemented
|
|||
|
|
</div>
|
|||
|
|
</main>
|
|||
|
|
);
|
|||
|
|
}
|