Material Kit PRO React is a beautiful resource built for Material Design. It was made over the powerful Material-UI. We used and have redesigned all components to make it look flat, minimalist and easy to use. We are proud of this new Material-UI skin and the possibilities for customisation.
Using it is very simple and it will enable you to refresh you classic looking application. To get the desired effect you will also need to integrate ReactJS plugins that take a little bit more effort. In the end the result will be worth it.
Material Kit PRO React uses a framework built by our friend Olivier and his team - Material-UI and was created starting with create-react-app, who did an amazing job creating the backbone for the material effects, animations, ripples and transitions. Big thanks to his team for the effort and forward thinking they put into it.
- Demo
- Quick Start
- Documentation
- File Structure
- Browser Support
- Resources
- Reporting Issues
- Technical Support or Questions
- Licensing
- Useful Links
- Buy from Creative Tim
The documentation for the Material Kit PRO React is hosted at our website.
Within the download you'll find the following directories and files:
material-kit-pro
.
├── CHANGELOG.md
├── ISSUE_TEMPLATE.md
├── README.md
├── gulpfile.js
├── jsconfig.json
├── package.json
├── Documentation
│ ├── assets
│ │ ├── css
│ │ ├── img
│ │ │ └── faces
│ │ └── js
│ └── tutorial-components.html
├── public
│ ├── favicon.ico
│ ├── index.html
│ └── manifest.json
└── src
├── assets
│ ├── css
│ │ ├── material-kit-pro-react.css
│ │ ├── material-kit-pro-react.css.map
│ │ └── material-kit-pro-react.min.css
│ ├── img
│ │ ├── arrow-left.cur
│ │ ├── arrow-right.cur
│ │ ├── assets-for-demo
│ │ │ ├── example-pages
│ │ │ ├── ourClients
│ │ │ ├── presentationViewSectionComponent
│ │ │ └── sections
│ │ │ └── imgs.js
│ │ ├── examples
│ │ ├── faces
│ │ ├── flags
│ │ ├── loading-bubbles.svg
│ │ └── sections
│ ├── jss
│ │ ├── material-kit-pro-react
│ │ │ ├── components
│ │ │ └── views
│ │ │ ├── aboutUsSections
│ │ │ ├── blogPostSections
│ │ │ ├── blogPostsSections
│ │ │ ├── componentsSections
│ │ │ ├── ecommerceSections
│ │ │ ├── landingPageSections
│ │ │ ├── presentationSections
│ │ │ ├── pricingSections
│ │ │ ├── sectionsSections
│ │ └── material-kit-pro-react.js
│ └── scss
│ ├── core
│ │ ├── mixins
│ │ └── variables
│ ├── plugins
│ └── material-kit-pro-react.scss
├── components
│ ├── Accordion
│ │ └── Accordion.js
│ ├── Badge
│ │ └── Badge.js
│ ├── Card
│ │ ├── Card.js
│ │ ├── CardAvatar.js
│ │ ├── CardBody.js
│ │ ├── CardFooter.js
│ │ └── CardHeader.js
│ ├── Clearfix
│ │ └── Clearfix.js
│ ├── CustomButtons
│ │ └── Button.js
│ ├── CustomDropdown
│ │ └── CustomDropdown.js
│ ├── CustomFileInput
│ │ └── CustomFileInput.js
│ ├── CustomInput
│ │ └── CustomInput.js
│ ├── CustomLinearProgress
│ │ └── CustomLinearProgress.js
│ ├── CustomTabs
│ │ └── CustomTabs.js
│ ├── CustomUpload
│ │ └── ImageUpload.js
│ ├── Footer
│ │ └── Footer.js
│ ├── Grid
│ │ ├── GridContainer.js
│ │ └── GridItem.js
│ ├── Header
│ │ ├── Header.js
│ │ └── HeaderLinks.js
│ ├── InfoArea
│ │ └── InfoArea.js
│ ├── Instruction
│ │ └── Instruction.js
│ ├── Media
│ │ └── Media.js
│ ├── NavPills
│ │ └── NavPills.js
│ ├── Pagination
│ │ └── Pagination.js
│ ├── Parallax
│ │ └── Parallax.js
│ ├── Snackbar
│ │ └── SnackbarContent.js
│ ├── Table
│ │ └── Table.js
│ └── Typography
│ ├── Danger.js
│ ├── Info.js
│ ├── Muted.js
│ ├── Primary.js
│ ├── Quote.js
│ ├── Rose.js
│ ├── Small.js
│ ├── Success.js
│ └── Warning.js
├── index.js
├── logo.svg
└── views
├── AboutUsPage
│ ├── AboutUsPage.js
│ └── Sections
│ ├── SectionContact.js
│ ├── SectionDescription.js
│ ├── SectionOffice.js
│ ├── SectionServices.js
│ └── SectionTeam.js
├── BlogPostPage
│ ├── BlogPostPage.js
│ └── Sections
│ ├── SectionBlogInfo.js
│ ├── SectionComments.js
│ ├── SectionSimilarStories.js
│ └── SectionText.js
├── BlogPostsPage
│ ├── BlogPostsPage.js
│ └── Sections
│ ├── SectionImage.js
│ ├── SectionInterested.js
│ ├── SectionPills.js
│ └── SubscribeLine.js
├── ComponentsPage
│ ├── ComponentsPage.js
│ └── Sections
│ ├── SectionBasics.js
│ ├── SectionCards.js
│ ├── SectionCarousel.js
│ ├── SectionContentAreas.js
│ ├── SectionFooter.js
│ ├── SectionJavascript.js
│ ├── SectionNavbars.js
│ ├── SectionNotifications.js
│ ├── SectionPills.js
│ ├── SectionPreFooter.js
│ ├── SectionTabs.js
│ └── SectionTypography.js
├── ContactUsPage
│ └── ContactUsPage.js
├── EcommercePage
│ ├── EcommercePage.js
│ └── Sections
│ ├── SectionBlog.js
│ ├── SectionLatestOffers.js
│ └── SectionProducts.js
├── ErrorPage
│ └── ErrorPage.js
├── LandingPage
│ ├── LandingPage.js
│ └── Sections
│ ├── SectionProduct.js
│ ├── SectionTeam.js
│ └── SectionWork.js
├── LoginPage
│ └── LoginPage.js
├── PresentationPage
│ ├── PresentationPage.js
│ └── Sections
│ ├── SectionCards.js
│ ├── SectionComponents.js
│ ├── SectionContent.js
│ ├── SectionDescription.js
│ ├── SectionExamples.js
│ ├── SectionFreeDemo.js
│ ├── SectionOverview.js
│ ├── SectionPricing.js
│ └── SectionSections.js
├── PricingPage
│ ├── PricingPage.js
│ └── Sections
│ ├── SectionFeatures.js
│ └── SectionPricing.js
├── ProductPage
│ └── ProductPage.js
├── ProfilePage
│ └── ProfilePage.js
├── SectionsPage
│ ├── Sections
│ │ ├── SectionBlogs.js
│ │ ├── SectionContacts.js
│ │ ├── SectionFeatures.js
│ │ ├── SectionHeaders.js
│ │ ├── SectionPricing.js
│ │ ├── SectionProjects.js
│ │ ├── SectionTeams.js
│ │ └── SectionTestimonials.js
│ └── SectionsPage.js
├── ShoppingCartPage
│ └── ShoppingCartPage.js
└── SignupPage
└── SignupPage.js
At present, we officially aim to support the last two versions of the following browsers:
- Demo: https://demos.creative-tim.com/material-kit-pro-react/#/components
- Download Page: https://www.creative-tim.com/product/material-kit-pro-react
- Documentation: https://demos.creative-tim.com/material-kit-pro-react/#/documentation/tutorial
- License Agreement: https://www.creative-tim.com/license
- Support: https://www.creative-tim.com/contact-us
- Issues: Github Issues Page
- Material Kit Free React
- Material Kit Free
- Material Dashboard Free React
- Material Dashboard Pro React
- Material Dashboard Free HTML
- Material Dashboard Pro HTML
- Material Dashboard Free Angular
- Material Dashboard Pro Angular
We use GitHub Issues as the official bug tracker for the Material Kit PRO React. Here are some advices for our users that want to report an issue:
- Make sure that you are using the latest version of the Material Kit PRO React. Check the CHANGELOG from your dashboard on our website.
- Providing us reproducible steps for the issue will shorten the time it takes for it to be fixed.
- Some issues may be browser specific, so specifying in what browser you encountered the issue might help.
If you have questions or need help integrating the product please contact us instead of opening an issue.
-
Copyright 2018 Creative Tim (https://www.creative-tim.com/)
-
Creative Tim license
- More products from Creative Tim
- Tutorials
- Freebies from Creative Tim
- Affiliate Program (earn money)
Twitter: https://twitter.com/CreativeTim
Facebook: https://www.facebook.com/CreativeTim
Dribbble: https://dribbble.com/creativetim