import Link from "next/link"; import { ArrowUpRight } from "lucide-react"; interface CTASectionProps { title?: string; subtitle?: string; accent?: "blue" | "green"; } export default function CTASection({ title = "Готовы обсудить проект?", subtitle = "Расскажите, что нужно — предложим решение и сроки в течение рабочего дня.", accent = "blue", }: CTASectionProps) { const isGreen = accent === "green"; return (

{title}

{subtitle}

Связаться с нами
); }