Section & Variations › Company Achievements

Available Parameters
Parameter Type Description
variation Text
required
Default : company-achievements-variation-1
Selected variations for Company Achievements section.
List of available variations :
  • company-achievements-variation-1
  • company-achievements-variation-2
title Text Set title for Company Achievements section.
items Array of Company Achievement Item
required
Set list of Company Achievements item.
Example:
[
    {
        "label"     : "Global Users",
        "value"     : "50K"
    }
]
Available Variations
Starter Kit Codes
{# include sections/company-achievements  #}
{% include "sections/company-achievements.twig", with {
    	"variation"	: "company-achievements-variation-1",

	"title"		: "A very good performance has been <br/>achieved by our team",

	"items" : [
		{
			"label"	: "Capital raised",
			"value"	: "$90M",
		},
		{
			"label"	: "Team members",
			"value"	: "60+",
		},
		{
			"label"	: "Global users",
			"value"	: "40M+",
		},
	]
  } %}
Section Preview Company Achievements Variation 1
Starter Kit Codes
{# include sections/company-achievements  #}
{% include "sections/company-achievements.twig", with {
    	"variation"	: "company-achievements-variation-2",

	"title"		: "A very good performance has been achieved by our team",

	"items" : [
		{
			"label"	: "Global Users",
			"value"	: "60k",
		},
		{
			"label"	: "Capital Raised",
			"value"	: "870+",
		},
		{
			"label"	: "Upto Savings Rate",
			"value"	: "32%",
		},
	]
  } %}
Section Preview Company Achievements Variation 2