Change the customer reviews shown on the site.
Testimonials are the customer reviews that appear on the home page and the About page.
You will edit:
config/testimonials.ts — the list of reviews"Testimonials" and part of "About" in config/messages/en.json and config/messages/es.json — section titles and descriptionsconfig/testimonials.ts.testimonials: [
{
name: "Emily Carter",
description: "Switching to Sifo made a noticeable difference...",
rating: 5,
},
// more testimonials...
],name — customer name.description — their comment.rating — number from 1 to 5 (how many stars).To add a new testimonial, copy an item and change the values.
To remove one, delete the item from the list.
config/messages/en.json."Testimonials" section and adjust the main title and description."About" section, you can also change the testimonialsTitle and testimonialsDescription used on the About page.config/messages/es.json and repeat the same changes (same keys, Spanish text).The testimonial texts themselves (names and descriptions) come directly from
config/testimonials.ts, so you only translate the section titles if you want.