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

+ +
)}