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

{t("cta.title")}

{t("cta.subtitle")}

$ {t("cta.installCommand")}
) }