diff --git a/front/components/home/SolutionSection.tsx b/front/components/home/SolutionSection.tsx index 9af725f10210..ce8c89a7affe 100644 --- a/front/components/home/SolutionSection.tsx +++ b/front/components/home/SolutionSection.tsx @@ -115,6 +115,7 @@ const renderSolutionSectionBlock = ({ ); }; + interface SolutionSectionContentBlockProps { title: ReactNode; content: ReactNode | ReactNode[]; diff --git a/front/pages/home/solutions/customer-support-2.tsx b/front/pages/home/solutions/customer-support-2.tsx index fa1d69cd4c9a..8bd5fc84c021 100644 --- a/front/pages/home/solutions/customer-support-2.tsx +++ b/front/pages/home/solutions/customer-support-2.tsx @@ -1,4 +1,3 @@ -import { Avatar } from "@dust-tt/sparkle"; import type { ReactElement } from "react"; import { @@ -8,7 +7,6 @@ import { } from "@app/components/home/Carousel"; import { BlogBlock, - ImgBlock, MetricComponent, Quote, } from "@app/components/home/ContentBlocks"; @@ -20,6 +18,7 @@ import { getParticleShapeIndexByName, shapeNames, } from "@app/components/home/Particles"; +import type { SolutionSectionAssistantBlockProps } from "@app/components/home/SolutionSection"; import { SolutionSection } from "@app/components/home/SolutionSection"; import TrustedBy from "@app/components/home/TrustedBy"; import { classNames } from "@app/lib/utils"; @@ -156,6 +155,7 @@ export default function CustomerSupport() { from="from-amber-200" to="to-amber-500" /> + Boost Team Productivity., + title: <>Boost team productivity., content: [ <> Keep teams synchronized with real-time access to @@ -192,10 +192,10 @@ export default function CustomerSupport() { }, ], assistantBlocks: [ + assistantExamples[0], assistantExamples[1], assistantExamples[2], assistantExamples[3], - assistantExamples[4], ], }, ]} @@ -271,44 +271,40 @@ export default function CustomerSupport() { const assistantExamples: SolutionSectionAssistantBlockProps[] = [ { emoji: "🖋️", - name: "@TicketResolution", + name: "Ticket Resolution", backgroundColor: "bg-sky-300", description: ( - <> - Generates personalized and effective cold emails or follow-up - emails with the context of the relationship - + <>Smart answer suggestions and contextual knowledge at your fingertips. ), }, { emoji: "🔎", - name: "@AgentCoaching", + name: "Agent Coaching", backgroundColor: "bg-sky-300", description: ( <> - Creates a snapshot by retrieving data from your CRM, - Slack, Notion, including health and sentiment to understand - where to focus attention + Helps new support agents learn bst practices and company knowledge + faster. ), }, { emoji: "📞", - name: "@DocumentationBuilder", + name: "Documentation Builder", backgroundColor: "bg-sky-300", description: ( <> - Points to battle cards, competitive intelligence, - and objection handling documentation to increase conversion + Converts resolved support tickets into searchable knowledge base + articles and FAQ. ), }, { emoji: "📊", - name: "@CustomerVoice", + name: "Customer Voice", backgroundColor: "bg-sky-300", description: ( - <>Answers any question on revenue metrics directly from Slack + <>Turn customer feedback from every channel into actionable insights. ), }, ];