You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: optimize landing page for better UX and clarity
- Shorten feature card descriptions to be more concise
- Remove video calls from copy (not implemented)
- Remove stats section (99.9% Uptime SLA, etc.)
- Reduce spacing between sections for tighter layout
- Update feature titles to be more specific (Chat & Voice Support, CRM Integration)
- Improve overall page flow and readability
Copy file name to clipboardExpand all lines: frontend/app/page.tsx
+14-47Lines changed: 14 additions & 47 deletions
Original file line number
Diff line number
Diff line change
@@ -28,40 +28,35 @@ const features = [
28
28
{
29
29
icon: Brain,
30
30
title: "Intelligent AI Agents",
31
-
description: "Deploy AI agents that understand context, learn from conversations, and provide accurate answers from your knowledge base. No more guessing—agents escalate when they don't know."
31
+
description: "Context-aware agents that learn from conversations and escalate when they don't know the answer."
32
32
},
33
33
{
34
34
icon: MessageSquare,
35
-
title: "Unified Communication",
36
-
description: "One platform for chat, voice, and video calls. Seamlessly switch between channels while maintaining conversation context across all interactions."
35
+
title: "Chat & Voice Support",
36
+
description: "Natural conversations across text chatand voice calls with seamless context switching."
37
37
},
38
38
{
39
39
icon: Globe,
40
40
title: "Multilingual Support",
41
-
description: "Automatically detect and respond in the user's language. Support for English, French, Spanish, German, Italian, Portuguese, and more—out of the box."
41
+
description: "Auto-detects and responds in the user's language—English, French, Spanish, and more."
42
42
},
43
43
{
44
44
icon: Database,
45
45
title: "Knowledge Base Integration",
46
-
description: "Connect your documents, FAQs, and data sources. AI agents only use verified information from your knowledge base, ensuring accurate and reliable responses."
46
+
description: "Agents use only verified information from your documents and FAQs—no guessing."
47
47
},
48
48
{
49
49
icon: BarChart3,
50
50
title: "Real-Time Analytics",
51
-
description: "Track conversations, response times, user satisfaction, and costs. Make data-driven decisions with comprehensive insights and performance metrics."
51
+
description: "Track conversations, response times, and user satisfaction for data-driven insights."
52
52
},
53
53
{
54
54
icon: Workflow,
55
-
title: "CRM & Workflow Automation",
56
-
description: "Automatically capture contact information, create deals, and trigger workflows. Integrate with your existing tools to streamline operations."
55
+
title: "CRM Integration",
56
+
description: "Automatically capture contacts and create deals to streamline your sales process."
57
57
}
58
58
]
59
59
60
-
conststats=[
61
-
{value: "99.9%",label: "Uptime SLA"},
62
-
{value: "<100ms",label: "Response Time"},
63
-
{value: "24/7",label: "Always Available"}
64
-
]
65
60
66
61
exportdefaultfunctionHome(){
67
62
constheroRef=useRef<HTMLDivElement>(null)
@@ -322,7 +317,7 @@ export default function Home() {
0 commit comments