Files
ai-support-saas-shadcn/src/entities/site-content.ts
2026-05-08 22:39:33 +03:00

65 lines
3.8 KiB
TypeScript

import {
ActivityIcon,
BarChart3Icon,
BotIcon,
CheckCircle2Icon,
GaugeIcon,
LifeBuoyIcon,
MessageSquareTextIcon,
ShieldCheckIcon,
} from "lucide-react";
export const site = {
name: "SignalDesk AI",
tagline: "AI-агенты, real-time issue detection и QA для support-команд, которые растут быстрее очереди тикетов.",
cta: "Запустить демо",
secondaryCta: "Смотреть панель",
heroImage: "https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1400&q=80",
accentImage: "https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1100&q=80",
nav: [
{ href: "/product", label: "Продукт" },
{ href: "/pricing", label: "Тарифы" },
{ href: "/customers", label: "Клиенты" },
{ href: "/resources", label: "Ресурсы" },
{ href: "/dashboard", label: "Панель" },
],
} as const;
export const highlights = [
{ title: "Deflection", value: "42%", text: "AI закрывает повторяющиеся обращения без потери контроля.", icon: BotIcon },
{ title: "Detection", value: "30 сек", text: "Команда видит всплеск проблемы до массовой эскалации.", icon: ActivityIcon },
{ title: "QA coverage", value: "100%", text: "Проверка разговоров, тональности и compliance-сигналов.", icon: ShieldCheckIcon },
] as const;
export const products = [
{ name: "AI-помощник оператора", price: "agent layer", tag: "automation", text: "Черновики ответов, summary, handoff и next best action." },
{ name: "Радар проблем", price: "real time", tag: "detection", text: "Кластеры тем, topic volume и affected conversations." },
{ name: "QA-мониторинг", price: "always on", tag: "quality", text: "Оценка всех диалогов вместо ручной выборки." },
{ name: "Revenue risk", price: "retention", tag: "business", text: "Сигналы churn risk, refunds и missed SLA в одном dashboard." },
] as const;
export const dishes = products;
export const tastingSets = [
{ title: "Старт", price: "$49/mo", items: ["3 seats", "AI drafts", "basic analytics"] },
{ title: "Рост", price: "$149/mo", items: ["15 seats", "issue radar", "QA workflows"] },
{ title: "Масштаб", price: "Custom", items: ["SSO", "advanced routing", "priority support"] },
] as const;
export const testimonials = [
{ name: "MintCart", text: "Мы увидели системные проблемы доставки раньше, чем они стали refund wave.", rating: "-38% escalations" },
{ name: "CloudDesk", text: "QA перестал быть выборкой. Теперь команда видит всю картину.", rating: "100% QA coverage" },
] as const;
export const eventTypes = [
{ title: "Подключить inbox", text: "Support channels, история тем и SLA попадают в единую очередь.", icon: MessageSquareTextIcon },
{ title: "Настроить playbooks", text: "Tone, escalation rules и policy snippets контролируют AI-ответы.", icon: CheckCircle2Icon },
{ title: "Измерять outcome", text: "SLA, sentiment, deflection и risk topics видны в dashboard.", icon: BarChart3Icon },
] as const;
export const contactCards = [
{ title: "Live queue", text: "248 активных conversations, 18 high priority", icon: LifeBuoyIcon },
{ title: "SLA health", text: "96% within target, 4 risky segments", icon: GaugeIcon },
{ title: "Topic spike", text: "Payment retries +27% за последние 2 часа", icon: ActivityIcon },
] as const;