logo
Get in touch

Testimonials

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 descriptions

Step 1 – Edit the list of testimonials

  1. Open config/testimonials.ts.
  2. You will see a list like:
testimonials: [
  {
    name: "Emily Carter",
    description: "Switching to Sifo made a noticeable difference...",
    rating: 5,
  },
  // more testimonials...
],
  1. For each testimonial, change:
  • 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.

Step 2 – Change section titles (multi‑language)

  1. Open config/messages/en.json.
  2. Find the "Testimonials" section and adjust the main title and description.
  3. In the "About" section, you can also change the testimonialsTitle and testimonialsDescription used on the About page.
  4. Open 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.