- Features Grid
- Features Bento Grid
- Features Accordion
The features grid displays a simple, clean grid of features, perfect for highlighting core functionalities with icons and brief descriptions.Understanding the
All content for the grid is managed in the
File Location
The main component for this section is located at:Editing the Section Heading
The main title for the features grid section can be changed by editing the content of the<h2> tag inside the FeaturesGrid function.src/components/marketing/features-grid.tsx
Understanding the features Array
All content for the grid is managed in the features array at the top of the file. Each object in the array represents one feature card.The icon component to display. It should be imported from a library like
lucide-react.The title of the feature.
A brief description of the feature.
Customizing Features
To edit a feature, simply modify the corresponding object in thefeatures array.src/components/marketing/features-grid.tsx
Customizing the Feature Link
Each feature card includes a clickable link at the bottom. The destination for this link is set directly within the component’s render logic.To customize it, find the<Link> component inside the features.map loop and change its href attribute. You can also modify the link’s text and icon as needed.src/components/marketing/features-grid.tsx