\n
\n
\n
\n
\n {data.map((review, index: number) => (\n - currentIndex + nbCardToFocus - 1 && 'opacity-50'\n )}\n style={{ flex: `0 0 ${SIZE_CARD}px` }}\n key={`card-${review.name}`}\n data-testid={`card-dot-${review.name}`}\n >\n \n
\n ))}\n
\n
\n
\n {data.map((review, index: number) => (\n handleClickDot(index)}\n isActive={index === currentIndex}\n />\n ))}\n
\n
\n );\n}\n","'use client';\n\nimport { useLocale } from 'next-intl';\n\nimport { socialReviewsMocks } from '@/mocks/socialReviewsMock';\n\nimport { SectionModuleWrapper } from '../shared/SectionModuleWrapper';\nimport { BackgroundColors } from '../types';\nimport { Carousel } from './Carousel';\n\ntype SocialReviewCardsModuleProps = {\n title?: string;\n backgroundColor?: BackgroundColors;\n};\n\nexport default function SocialReviewCardsModule({\n title,\n backgroundColor,\n}: SocialReviewCardsModuleProps) {\n const locale = useLocale();\n\n const socialReviewsMock =\n socialReviewsMocks[locale] ?? socialReviewsMocks['en'];\n\n return (\n