Skip to content

Commit

Permalink
style: update testimonials display (#1441)
Browse files Browse the repository at this point in the history
  • Loading branch information
mamadoudicko authored Oct 19, 2023
1 parent 89858b5 commit 4345eac
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,9 @@ export const TestimonialsSection = (): JSX.Element => {
<p className="text-4xl font-semibold my-10">
{t("title")} <span className="text-primary">Quivr</span>{" "}
</p>
<div className="grid grid-cols-12 gap-10 mb-5 items-stretch p-4">
<div className="grid grid-cols-1 md:grid-cols-3 gap-10 mb-5 items-stretch p-4">
{testimonials.map((testimonial) => (
<div
className="col-span-12 md:col-span-4 h-full"
key={testimonial.content}
>
<div key={testimonial.content}>
<TestimonialCard {...testimonial} />
</div>
))}
Expand Down

0 comments on commit 4345eac

Please sign in to comment.