Feature14
The Feature14
component displays a feature section with a heading, two graphics cards with titles and descriptions, and a list of feature cards with icons and descriptions, all styled and responsive based on the theme and screen size.
Component path: src/blocks/feature/Feature14.tsx
Component usage path: src/app/blocks/feature/feature14/page.tsx
Preview link: https://www.saasable.io/blocks/feature/feature14
Props Details
heading
string
Main heading for the feature section
"Explore Our Features"
title
string
Title for the first image section
"Feature Title 1"
description
string
Description for the first image section
"This is a detailed description of the first feature."
title2
string
Title for the second image section
"Feature Title 2"
description2
string
Description for the second image section
"This is a detailed description of the second feature."
actionBtn
ButtonProps
Props for the main action button
{ variant: 'contained', color: 'primary', children: 'Learn More' }
cards
FeatureCardProps[]
Array of feature cards to display
[ { icon: 'icon-name1', title: 'Feature 1', description: 'Description of Feature 1' }, ... ]
image1
ImageCommonProps
Props for the first image
"path-to-image1.svg"
or
{ light: 'path-to-image1-light.svg', dark: 'path-to-image1-dark.svg' }
image2
ImageCommonProps
Props for the second image
"path-to-image2.svg"
or
{ light: 'path-to-image2-light.svg', dark: 'path-to-image2-dark.svg' }
Last updated