Components
Features
The Features component allows you to display a list of features. It can be used to display a list of features, benefits, etc.
Targets
Experience Builder SitesExample

Data Structure
{
title?: string,
description?: string,
features: [
{
title: string,
description: string
}
]
}
titleOptional - The title to display.descriptionOptional - The description to display.features- List of features to display. Each feature should be a map with the following format:title- The title of the feature.description- The description of the feature.