Section & Variations › Testimonials

Available Parameters
Parameter Type Description
variation Text
required
Default : testimonials-variation-1
Selected variations for Testimonials section.
List of available variations :
  • testimonials-variation-1
  • testimonials-variation-2
  • testimonials-variation-3
title Text Set title for Testimonials section.
description Text Set description for Testimonials section
cta Text HTML Display CTA in Testimonials section.
ratings Array of Rating Item
Available for : testimonials-variation-3
Set list of Rating item.
Example:
[
    {
        "logo"    : "rating-google.png",
        "score"    : 4.8
    },
    {
        "logo"    : "rating-capterra.png",
        "score"    : 4.5
    }
]
items Array of Testimonial Item
required
Set list of Testimonial item.
Example:
[
    {
        "quote"     : "“Our team has been using Entrada for the past year and we couldn't be happier with the results. It has transformed the way we work and has significantly improved our productivity.”",
        "author"    : {
            "name"     : "Sam Michale Gray",
            "position" : "Marketing Manager at D&G",
            "photo"    : "testimonial-photo-1.png"
        },
    }
]
Available Variations
Starter Kit Codes
{# include sections/testimonials  #}
{% include "sections/testimonials.twig", with {
    	"variation"	: "testimonials-variation-1",

	"items"		: [
		{
			"quote"		: ""Our team has been using Entrada for the past year and we couldn't be happier with the results. It has transformed the way we work and has significantly improved our productivity."",
			
			"author"		: {
				"name"		: "Venus Saint Jagarsia",
				"position"	: "Marketing Manager at D&G",
				"photo"		: "testimonial-photo-1.png",
			},
		},
	]
  } %}
Section Preview Testimonials Variation 1
Starter Kit Codes
{# include sections/testimonials  #}
{% include "sections/testimonials.twig", with {
    	"variation"	: "testimonials-variation-2",

	"items"		: [
		{
			"quote"		: ""Our team has been using Entrada for the past year and we couldn't be happier with the results. It has transformed the way we work and has significantly improved our productivity."",
			
			"author"		: {
				"name"		: "Venus Saint Jagarsia",
				"position"	: "Marketing Manager at D&G",
				"photo"		: "testimonial-photo-2.png",
			},
		},
	]
  } %}
Section Preview Testimonials Variation 2
Starter Kit Codes
{# include sections/testimonials  #}
{% include "sections/testimonials.twig", with {
    	"variation"	: "testimonials-variation-3",

	"title"		: "What our client are saying",
	"description"	: "Discover how our SaaS solution can streamline your daily operations, saving you time and resources.",

	"cta"		: "<a class=&quot;btn btn-sm btn-outline-dark-1&quot; href=&quot;#&quot;>More testimonials</a>",

	"ratings"	: [
		{
			"logo"	: "rating-google.png",
			"score"	: 4.8
		},
		{
			"logo"	: "rating-capterra.png",
			"score"	: 4.5
		}
	],

	"items" : [
		{
			"quote"		: "&quot;The most beautiful and easy to use no-code machine learning tool I have seen.”",
			
			"author"		: {
				"name"		: "Cornelia Carter",
				"position"	: "Founder & CEO at Worderland",
				"photo"		: "testimonial-photo-3.png",
			},
		},
		{
			"quote"		: "&quot;Our team has been using Entrada for the past year and we couldn't be happier with the results. It has transformed the way we work and has significantly improved our productivity.”",
			
			"author"		: {
				"name"		: "David Bishop",
				"position"	: "Marketing Manager at EFG Co.",
				"photo"		: "testimonial-photo-4.png",
			},
		},
		{
			"quote"		: "&quot;Easily the best project management software on the market, right now. We became 2x faster and more efficient after adopting Projectile. Love the automated reports and alerts.&quot;",
			
			"author"		: {
				"name"		: "Jenny Wilson",
				"position"	: "Web Designer at Lordez",
				"photo"		: "testimonial-photo-5.png",
			},
		},
		{
			"quote"		: "&quot;The analytics and reporting features in Entrada have been a game-changer for our marketing team. We can now measure the impact of our campaigns in real-time and make data-driven decisions.&quot;",
			
			"author"		: {
				"name"		: "Jane Cooper",
				"position"	: "Marketing Manager at D&G",
				"photo"		: "testimonial-photo-6.png",
			},
		},
		{
			"quote"		: "&quot;We were struggling to keep track of our customer data and effectively manage our sales pipeline before we started using Chroma. Now, everything is organized and accessible in one place”",
			
			"author"		: {
				"name"		: "Jayden Willis",
				"position"	: "VP of Marketing",
				"photo"		: "testimonial-photo-7.png",
			},
		},
		{
			"quote"		: "&quot;As a developer, I appreciate the flexibility and ease of use of the UI Kit template. It seamlessly integrates into my workflow.”",
			
			"author"		: {
				"name"		: "Martin Maller",
				"position"	: "Senior Marketing Manager",
				"photo"		: "testimonial-photo-8.png",
			},
		},
	]
  } %}
Section Preview Testimonials Variation 3