From d90b4366e84dbb10c730c3cff33f96bf22479b9d Mon Sep 17 00:00:00 2001 From: admin Date: Thu, 19 Mar 2026 05:07:04 +0000 Subject: [PATCH] feat: Leads Finder intro screen with guided questions and example prompts --- components/AIAssist.tsx | 38 +++++++++++++++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/components/AIAssist.tsx b/components/AIAssist.tsx index 07b205c..0a2005c 100644 --- a/components/AIAssist.tsx +++ b/components/AIAssist.tsx @@ -1192,7 +1192,43 @@ export default function AIAssist({ vibeMode = false }: { vibeMode?: boolean } = )} - {aiAssistHistory.length === 0 && ( + {aiAssistHistory.length === 0 && currentAgent === "leads" && ( +
+
+ +
+
+

Leads Finder

+

+ Find influencers, prospects, and leads across social media platforms. Tell me who you are looking for and I will search the web for relevant leads. +

+
+

To get started, answer these questions:

+
+

1. What niche/industry are you targeting? (e.g. forex, SaaS, fitness, crypto)

+

2. Which region or location? (e.g. Singapore, UAE, Global, Latin America)

+

3. What platform preference? (e.g. Instagram, Twitter/X, LinkedIn, YouTube, TikTok, or all)

+

4. How many leads do you need? (default: 20+)

+
+
+
+ {["Forex traders in Singapore", "SaaS founders in UAE", "Fitness influencers on Instagram", "Crypto YouTubers in Latin America", "Marketing agencies in Southeast Asia"].map((label: string) => ( + setInput(label)} + > + {label} + + ))} +
+
+ )} + + + + {aiAssistHistory.length === 0 && currentAgent !== "leads" && (