import { TestimonialCard } from "poyraz-ui/molecules"; import { REFERENCES } from "@/data/references"; import { useLocale } from "next-intl"; import { getLocalizedValue } from "@/lib/locale"; type ReferenceCardsProps = { className?: string; cardClassName?: string; lineClamp?: boolean; showRating?: boolean; }; export function ReferenceCards({ className, cardClassName, lineClamp, showRating = true, }: ReferenceCardsProps) { const locale = useLocale(); const hoverClassName = "transition-colors duration-200 group-hover:border-red-600/40 group-hover:bg-muted/30"; return (