import { Star } from "lucide-react"; import ScrollReveal from "@/components/ScrollReveal"; interface Testimonial { text: string; name: string; from: string; } interface TestimonialsSectionProps { testimonials: Testimonial[]; lang: string; } export default function TestimonialsSection({ testimonials, lang }: TestimonialsSectionProps) { return (
{lang === "en" ? "Guest Reviews" : "Misafir Yorumları"}

{lang === "en" ? "Experiences" : "Deneyimler"}

{testimonials.map((t, i) => (
{/* Large decorative quote */} " {/* Stars */}
{Array.from({ length: 5 }).map((_, j) => ( ))}

"{t.text}"

{t.name[0]}
{t.name} {t.from}
))}
); }