Adding UI of FeedBack, Registration, Admin console

This commit is contained in:
2026-05-12 20:54:15 +07:00
parent 6a48d6351c
commit dd95ff5a21
30 changed files with 10038 additions and 36 deletions
+18
View File
@@ -0,0 +1,18 @@
export type SubmissionStatus = "approved" | "pending" | "rejected";
/** One row in the admin requests table (registration or feedback). */
export type AdminRequestRow = {
id: string;
submittedAt: string;
displayDate: string;
fullName: string;
jobTitle: string;
company: string;
segment: string;
email: string;
phone: string;
status: SubmissionStatus;
notes: string;
/** Optional: where the row came from (not shown in table yet). */
source?: "registration" | "feedback";
};