From 84ec3dfbe98e7ad640e58c56f4e76602155b6d4d Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 11 Nov 2025 23:26:20 +0000 Subject: [PATCH] completionId: cgen-70aabae7b8fa4987ae9f7fecf76ddb36 cgen-70aabae7b8fa4987ae9f7fecf76ddb36 --- client/pages/ethos/ArtistSettings.tsx | 88 +++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) diff --git a/client/pages/ethos/ArtistSettings.tsx b/client/pages/ethos/ArtistSettings.tsx index 74dda186..d2f70fa5 100644 --- a/client/pages/ethos/ArtistSettings.tsx +++ b/client/pages/ethos/ArtistSettings.tsx @@ -440,6 +440,94 @@ export default function ArtistSettings() { + {/* Verification Section */} + + + + + Ethos Guild Verification + + + Get verified to unlock commercial licensing opportunities + + + + {profile.verified ? ( +
+ +
+

Verified Artist

+

+ You are a verified Ethos Guild artist. You can upload tracks and accept + commercial licensing requests. +

+
+
+ ) : verificationStatus.status === "pending" ? ( +
+ +
+

Pending Review

+

+ Your verification request is under review. We'll email you when there's an + update. +

+ {verificationStatus.submitted_at && ( +

+ Submitted:{" "} + {new Date(verificationStatus.submitted_at).toLocaleDateString()} +

+ )} +
+
+ ) : verificationStatus.status === "rejected" ? ( +
+

Application Rejected

+ {verificationStatus.rejection_reason && ( +

+ {verificationStatus.rejection_reason} +

+ )} +

+ You can resubmit with updates to your portfolio or qualifications. +

+
+ ) : ( + <> +
+ +