mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-03 19:35:15 -05:00
fix(copilot): update homepage copy to focus on problem discovery
Update the CoPilot homepage to shift from 'what do you want?' to 'tell me about your problems'. This lowers the barrier to engagement by letting users describe their work frustrations instead of requiring them to identify automations themselves. Changes: - Headline: 'What do you want to automate?' → 'Tell me about your work — I'll find what to automate.' - Placeholder: Updated to prompt users to describe their role and frustrations - Quick actions: Changed from feature-oriented to problem-oriented prompts - Container width: max-w-2xl → max-w-3xl (to fit longer headline on one line) Resolves: SECRT-1876
This commit is contained in:
@@ -26,8 +26,8 @@ export function buildCopilotChatUrl(prompt: string): string {
|
||||
|
||||
export function getQuickActions(): string[] {
|
||||
return [
|
||||
"Show me what I can automate",
|
||||
"Design a custom workflow",
|
||||
"Help me with content creation",
|
||||
"I don't know where to start, just ask me stuff",
|
||||
"I do the same thing every week and it's killing me",
|
||||
"Help me find where I'm wasting my time",
|
||||
];
|
||||
}
|
||||
|
||||
@@ -90,7 +90,7 @@ export default function CopilotPage() {
|
||||
</div>
|
||||
) : (
|
||||
<>
|
||||
<div className="mx-auto max-w-2xl">
|
||||
<div className="mx-auto max-w-3xl">
|
||||
<Text
|
||||
variant="h3"
|
||||
className="mb-3 !text-[1.375rem] text-zinc-700"
|
||||
@@ -98,13 +98,13 @@ export default function CopilotPage() {
|
||||
Hey, <span className="text-violet-600">{greetingName}</span>
|
||||
</Text>
|
||||
<Text variant="h3" className="mb-8 !font-normal">
|
||||
What do you want to automate?
|
||||
Tell me about your work — I'll find what to automate.
|
||||
</Text>
|
||||
|
||||
<div className="mb-6">
|
||||
<ChatInput
|
||||
onSend={startChatWithPrompt}
|
||||
placeholder='You can search or just ask - e.g. "create a blog post outline"'
|
||||
placeholder="What's your role and what eats up most of your day? e.g. 'I'm a real estate agent and I hate...'"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user