Skip to main content

FeatureSplit

A component for displaying a list of features alongside an image, with customizable positioning.

Component Preview

Props

PropTypeDescription
itemsFeatureSplitItem[]Array of feature items to display.
imageobjectImage object with imageSrc and alt properties.
titlestringOptional title for the section.
subtitlestringOptional subtitle or description text.
imagePosition'left' | 'right' | 'top'Position of the image relative to content. Default: 'right'.
actionLabelstringOptional label for a call-to-action button.
hrefstringOptional URL for the call-to-action button.
classNamestringOptional CSS class name for the wrapper.
invertedbooleanWhether to use inverted theme colors. Default: false.

FeatureSplitItem Interface

PropertyTypeDescription
titlestringTitle of the feature item.
descriptionstringDescription text for the feature.
iconstringOptional Iconify icon name.

JSON Data Example

{
"type": "FeatureSplit",
"data": {
"title": "Experience the difference",
"subtitle": "Our platform provides everything you need to scale your business efficiently.",
"imagePosition": "right",
"image": {
"imageSrc": "https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=2850&q=80",
"alt": "Team working together"
},
"items": [
{
"icon": "mdi:speedometer",
"title": "Lightning Fast",
"subtitle": "Deploy in seconds, not minutes. Global edge network ensures low latency."
},
{
"icon": "mdi:shield-check",
"title": "Secure by Default",
"subtitle": "Enterprise-grade security with automatic SSL and DDoS protection."
},
{
"icon": "mdi:chart-box",
"title": "Real-time Analytics",
"subtitle": "Gain insights into your traffic and user behavior instantly."
}
]
}
}