From 9541d3e38b286984209119bce4fc38fb2b33c65b Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Wed, 12 Nov 2025 02:32:50 +0000 Subject: [PATCH] completionId: cgen-696e9cb5a553406d86ca5baf70b04c40 cgen-696e9cb5a553406d86ca5baf70b04c40 --- client/pages/ethos/ArtistSettings.tsx | 80 +++++++++++++++++++++++---- 1 file changed, 69 insertions(+), 11 deletions(-) diff --git a/client/pages/ethos/ArtistSettings.tsx b/client/pages/ethos/ArtistSettings.tsx index 855ff50e..e21380b8 100644 --- a/client/pages/ethos/ArtistSettings.tsx +++ b/client/pages/ethos/ArtistSettings.tsx @@ -438,55 +438,93 @@ export default function ArtistSettings() { Services & Pricing - Set your sample pricing for common services + Set your prices for custom services. Leave blank if you prefer "Contact for Quote" -
+
- + setProfile({ ...profile, - sample_price_track: Number(e.target.value) || undefined, + price_list: { + ...profile.price_list, + track_custom: Number(e.target.value) || null, + }, }) } placeholder="500" className="bg-slate-800 border-slate-700" + min="0" /> +

Original music composition

+
- + setProfile({ ...profile, - sample_price_sfx: Number(e.target.value) || undefined, + price_list: { + ...profile.price_list, + sfx_pack: Number(e.target.value) || null, + }, }) } placeholder="150" className="bg-slate-800 border-slate-700" + min="0" /> +

Sound effects collection

+
- + setProfile({ ...profile, - sample_price_score: Number(e.target.value) || undefined, + price_list: { + ...profile.price_list, + full_score: Number(e.target.value) || null, + }, }) } placeholder="2000" className="bg-slate-800 border-slate-700" + min="0" /> +

Complete game/film score

+
+ +
+ + + setProfile({ + ...profile, + price_list: { + ...profile.price_list, + day_rate: Number(e.target.value) || null, + }, + }) + } + placeholder="1500" + className="bg-slate-800 border-slate-700" + min="0" + /> +

Hourly or daily rate for consulting

@@ -505,7 +543,27 @@ export default function ArtistSettings() { className="bg-slate-800 border-slate-700" min="1" /> +

Typical delivery time for custom work

+ +
)}