import type { JSX } from "react" import { getTranslations } from "next-intl/server" import { Card, CardContent } from "@/components/ui/card" import { Star } from "lucide-react" import { REVIEW_KEYS } from "@/components/landing/constants" export async function ReviewsSection(): Promise { const t = await getTranslations("landing") return (

{t("reviews.title")}

{REVIEW_KEYS.map((key) => (

“{t(`reviews.${key}.text`)}”

— {t(`reviews.${key}.author`)}

))}
) }