"use client"; import { motion } from "framer-motion"; import { useTranslations } from "next-intl"; interface Review { id: number; name: string; location: string; text: string; rating: number; } interface ProductReviewsProps { locale?: string; productName?: string; } function ReviewCard({ review }: { review: Review }) { return (
"{review.text}"
{review.name}
Verified{review.location}
{t("basedOnReviews")}