'use client'; import { testimonials1, testimonials2, } from '@gitroom/react/helpers/testomonials'; import { Testimonial } from '@gitroom/frontend/components/auth/testimonial'; export const TestimonialComponent = () => { return (
{[1, 2].flatMap((p) => testimonials1.flatMap((a) => (
)) )}
{[1, 2].flatMap((p) => testimonials2.flatMap((a) => (
)) )}
); };