ComponentsTestimonials Grid

Testimonials Grid Component

TestimonialsGrid Component Preview

page.tsx
import TestimonialsGrid from "@/components/marketing/TestimonialsGrid";
page.tsx
<TestimonialsGrid
    title={{
        badge: "CUSTOM BADGE TITLE",
        main: (
            <>
                Lorem ipsum dolor sit{" "}
                <span className="relative mt-4 inline-block whitespace-nowrap bg-blue-600 p-2 text-white">
                    amet consectetur,
                </span>
                adipisicing elit.
            </>
        ),
        subtitle: "Lorem ipsum, dolor sit amet consectetur adipisicing elit. Cupiditate, odio!",
    }}
    testimonials={testimonials}
    testimonialsPerPage={8}
    className="my-12"
/>