"use client"; import { ArrowRight, ArrowLeft } from "lucide-react"; import Link from "next/link"; import { useLanguage } from "@/components/language-provider"; import { buttonVariants } from "@/components/ui/button"; import { cn } from "@/lib/utils"; export function Cta() { const { t, lang } = useLanguage(); const Arrow = lang === "fa" ? ArrowLeft : ArrowRight; return (

{t.cta.title}

{t.cta.subtitle}

{t.cta.button}
); }