feat: init repo

This commit is contained in:
2026-05-07 18:12:55 +03:00
commit ff296dd1c3
84 changed files with 13766 additions and 0 deletions

View File

@@ -0,0 +1,64 @@
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 для команд поддержки, которые растут быстрее очереди тикетов.",
cta: "Запустить демо",
secondaryCta: "Смотреть панель",
heroImage: "https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1400&q=80",
accentImage: "https://images.unsplash.com/photo-1552664730-d307ca884978?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 и подсказки оператору." },
{ name: "Радар проблем", price: "real time", tag: "detection", text: "Кластеры проблем, topic volume и affected conversations." },
{ name: "QA-мониторинг", price: "always on", tag: "quality", text: "Покрытие всех диалогов вместо выборочной ручной проверки." },
{ name: "Сохранение выручки", 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% fewer escalations" },
{ name: "CloudDesk", text: "QA перестал быть выборкой. Теперь команда видит всю картину.", rating: "100% QA coverage" },
] as const;
export const eventTypes = [
{ title: "Connect inbox", text: "Подключите support channels и импортируйте историю тем.", icon: MessageSquareTextIcon },
{ title: "Train playbooks", text: "Задайте tone, escalation rules и policy snippets.", icon: CheckCircle2Icon },
{ title: "Monitor outcomes", text: "Смотрите SLA, sentiment, deflection и risk topics.", 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;