Project Cards
The Project Cards components helps you to simply create a beautiful card for projects.
The below codes are editable and you can modify them the way you want directly from your browser, please use the green button or the ctrl + s to save the changes.
Default Project Card
// Material Dashboard 2 React Examples
import DefaultProjectCard from "examples/Cards/ProjectCards/DefaultProjectCard";
Props Information
| Name | Type | Default | Description | 
|---|---|---|---|
| image* | string | Used to set the DefaultProjectCardimage. Its a required prop. | |
| label* | string | Used to set the DefaultProjectCardlabel. Its a required prop. | |
| title* | string | Used to set the DefaultProjectCardtitle. Its a required prop. | |
| description* | string | Used to set the DefaultProjectCarddescription. Its a required prop. | |
| authors | array | [] | Used to set the DefaultProjectCardincluded members or authors. It should be anarrayof objects with the following keys: `image` and `name`. | 
| action* | { type: ["internal", "external"], route: string, color: ["primary", "secondary", "info", "success", "warning", "error", "light", "dark"], label: string } | [] | Used to set the DefaultProjectCardroute and action button style. Its a required prop. | 
Complex Project Card
PRO
// Material Dashboard 2 PRO React Examples
import ComplexProjectCard from "examples/Cards/ProjectCards/ComplexProjectCard";





slack bot
Props Information
| Name | Type | Default | Description | 
|---|---|---|---|
| color | 'primary''secondary''info''success''warning''error''dark''light' | dark | Used to set the ComplexProjectCardcolor. | 
| image* | string | Used to set the ComplexProjectCardimage. Its a required prop. | |
| title* | string | Used to set the ComplexProjectCardtitle. Its a required prop. | |
| dateTime | string | "" | Used to set the ComplexProjectCarddate or time. | 
| description* | node | Used to set the ComplexProjectCarddescription. Its a required prop. | |
| members | array | [] | Used to set the ComplexProjectCardincluded members or authors. It should be anarrayof images. | 
| dropdown | bool{ action: func, menu: node } | false | Used to set the ComplexProjectCarddropdown menu, it should be anobjectwith the following keys: `action` and `menu`.
 | 
The below code contains a complete exmaple of ComplexProjectCard including the dropdown menu functionality.