+
+
+
setAudienceDropdownOpen(false)}
+ anchorRef={audienceButtonRef}
+ placement="bottom-left"
+ className="w-80 max-h-80 overflow-y-auto p-2"
+ >
+ {audienceOptions.length === 0 ? (
+
+ No audience profiles defined yet. Use the custom field below.
+
+ ) : (
+ audienceOptions.map((option) => {
+ const isSelected = selectedAudienceIds.includes(option.id);
+ return (
+
+ );
+ })
+ )}
+
+
+
+ {selectedAudienceOptions.length > 0 && (
+
+ {selectedAudienceOptions.map((option) => (
+
+ {option.name}
+
+
+ ))}
+
+ )}
+
+
+
+ {showCustomInput && (
+ handleCustomAudienceChange(e.target.value)}
+ placeholder="Operations leaders at fast-scaling eCommerce brands"
+ />
+ )}
+
+
+
+ Helps the AI craft messaging, examples, and tone.
+
+
+ );
+}
+
// Stage 1 Wizard Component
function BusinessDetailsStepStage1({
data,
@@ -313,14 +530,24 @@ function BusinessDetailsStepStage1({
+ Helps the AI craft messaging, examples, and tone.
+
+ >
+ )}