feat: split template file and update agents.md

This commit is contained in:
2026-06-18 23:13:47 +03:00
parent dce25f7123
commit 5b692e2634
28 changed files with 238 additions and 135 deletions

View File

@@ -1,15 +1,5 @@
"use client";
import { InnerHero, SplitStory, TestimonialBand } from "@/widgets/template-ui";
import { testimonials } from "@/entities/site-content";
import { CustomersPage } from "@/widgets/customers-page";
export default function Page() {
return (
<>
<InnerHero eyebrow="Customers" title="Команды поддержки используют SignalDesk как radar, QA и agent assist" text="Customer page продает outcome: меньше эскалаций, быстрее реакция, выше качество." />
<TestimonialBand items={testimonials} />
<SplitStory image="https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1100&q=80" eyebrow="Case study" title="MintCart нашел корень refund wave за 14 минут" text="Issue radar связал всплеск тикетов с failed payment retries и помог support/product командам закрыть проблему." points={["-38% escalations", "+24% faster first response", "100% QA coverage"]} />
</>
);
return <CustomersPage />;
}