import type { JSX } from "react" import { getTranslations } from "next-intl/server" import { ArrowRight } from "lucide-react" import { Button } from "@/components/ui/button" import { Link } from "@/i18n/routing" export async function FinalCtaSection(): Promise { const t = await getTranslations("manifesto") return (

{t("finalCta.title")}

) }