Last updated
Last updated
The Process3
component renders a section with an accordion-style list of cards and an optional image, allowing users to expand and view details for each card while presenting an image alongside the content.
All available props for the Process3 component are defined and handled within Component usage path file. This allows for easy modifications to the content of the Process section.
Component path: src/blocks/process/Process3.tsx
Component usage path: src/app/blocks/process/process3/page.tsx
Preview link:
heading
string
Main title of the section.
"Our Workflow"
caption
string
Subheading or additional description related to the heading.
"Discover the step-by-step process that we follow to deliver successful projects."
image
ImageCommonProps
Properties for the image displayed alongside the cards.
pass Image path or object with light
and dark
image path.
"path-to-image.svg"
or
{ light: 'path-to-image-light.svg', dark: 'path-to-image-dark.svg' }
cards
ProcessCardProps[]
Array of card objects for rendering accordion panels.
[ { title: 'Initial Consultation', description: 'We discuss...', ... }, { title: 'Design Phase', ... } ]
defaultExpanded
string
(Optional)
The panel to expand by default when the component first loads.
"panel0"