NextJS Material Kit PRO is a Premium UI Kit made for NextJS version 9.0.5, React version 16.9.0 and Material-UI version 4.3.2.
If you like bright and fresh colors, you will love this Premium NextJS Material-UI Kit! It features a huge number of components that can help you create amazing websites.
Special thanks go to:
- Nepcha Analytics for the analytics tool. Nepcha is already integrated with Next.js Material Kit PRO. You can use it to gain insights into your sources of traffic
Getting Started
- Install NodeJs from NodeJs Official Page
- Go to creative tim website and login into your account
- Go to downloads section on creative tim website (be sure to be logged into your account) - after you've bought the theme
- Press the download button near NextJS Material Kit Pro product (this will download onto your computer a zip file)
- Unzip the downloaded file to a folder in your computer
- Open Terminal
- Go to your file project (where you've unzipped the product)
- Run in terminal
npm install
- Then run
npm start
- Alternatively you can run
npm run install:clean
which will deletenode_modules
,package-lock.json
,.next/
, automatically runinstall
script andstart
script - Navigate to http://localhost:3000
- More information → React
- More information → NextJS
- More information → Material-UI
- More information → Material Kit PRO React
Fully Coded Components
NextJS Material Kit PRO is built with over frontend 1000 individual components, giving you the freedom of choosing and combining. All components can take variations in colour, that you can easily modify using SASS and JSS files and classes.
You will save a lot of time going from prototyping to full-functional code, because all elements are implemented. This Premium NextJS Material-UI Kit is coming with prebuilt examples, so the development process is seamless, switching from our pages to the real website is very easy to be done.
Every element has multiple states for colors, styles, hover, focus, that you can easily access and use.
View all components here.
COMPLEX DOCUMENTATION
Each element is well presented in a very complex documentation. You can read more about the idea behind this product here. You can check the components here.
Example Pages
If you want to get inspiration or just show something directly to your clients, you can jump start your development with our pre-built example pages. You will be able to quickly set up the basic structure for your web project.
View example pages here.
- Versions
- Demo
- Quick Start
- Documentation
- File Structure
- Browser Support
- Resources
- Reporting Issues
- Technical Support or Questions
- Licensing
- Useful Links
React Native | WordPress | NextJS | HTML |
---|---|---|---|
React | Vue |
---|---|
- Buy from Creative Tim
The documentation for the NextJS Material Kit PRO is hosted at our website.
Within the download you'll find the following directories and files:
nextjs-material-kit-pro
.
├── CHANGELOG.md
├── ISSUE_TEMPLATE.md
├── README.md
├── next.config.js
├── package.json
├── Documentation
│ ├── assets
│ │ ├── css
│ │ ├── img
│ │ │ └── faces
│ │ └── js
│ └── tutorial-components.html
├── pages
│ ├── _app.js
│ ├── _document.js
│ ├── _error.js
│ ├── about-us.js
│ ├── blog-post.js
│ ├── blog-posts.js
│ ├── components.js
│ ├── contact-us.js
│ ├── ecommerce.js
│ ├── error-page.js
│ ├── index.js
│ ├── landing-page.js
│ ├── login.js
│ ├── presentation.js
│ ├── pricing.js
│ ├── product.js
│ ├── profile.js
│ ├── sections.js
│ ├── shopping-cart.js
│ └── signup.js
├── assets
│ ├── css
│ │ ├── nextjs-material-kit-pro.css
│ │ ├── nextjs-material-kit-pro.css.map
│ │ └── nextjs-material-kit-pro.min.css
│ ├── img
│ │ ├── assets-for-demo
│ │ │ ├── example-pages
│ │ │ ├── ourClients
│ │ │ ├── presentationViewSectionComponent
│ │ │ └── sections
│ │ │ └── imgs.js
│ │ ├── examples
│ │ ├── faces
│ │ ├── flags
│ │ └── sections
│ ├── jss
│ │ ├── nextjs-material-kit-pro
│ │ │ ├── components
│ │ │ └── views
│ │ │ ├── aboutUsSections
│ │ │ ├── blogPostSections
│ │ │ ├── blogPostsSections
│ │ │ ├── componentsSections
│ │ │ ├── ecommerceSections
│ │ │ ├── landingPageSections
│ │ │ ├── presentationSections
│ │ │ ├── pricingSections
│ │ │ ├── sectionsSections
│ │ └── nextjs-material-kit-pro.js
│ └── scss
│ ├── core
│ │ ├── mixins
│ │ └── variables
│ ├── plugins
│ └── nextjs-material-kit-pro.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
│ ├── PageChange
│ │ └── PageChange.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
└── pages-sections
├── about-us
│ ├── SectionContact.js
│ ├── SectionDescription.js
│ ├── SectionOffice.js
│ ├── SectionServices.js
│ └── SectionTeam.js
├── blog-post
│ ├── SectionBlogInfo.js
│ ├── SectionComments.js
│ ├── SectionSimilarStories.js
│ └── SectionText.js
├── blog-posts
│ ├── SectionImage.js
│ ├── SectionInterested.js
│ ├── SectionPills.js
│ └── SubscribeLine.js
├── components
│ ├── SectionBasics.js
│ ├── SectionCards.js
│ ├── SectionCarousel.js
│ ├── SectionContentAreas.js
│ ├── SectionFooter.js
│ ├── SectionJavascript.js
│ ├── SectionNavbars.js
│ ├── SectionNotifications.js
│ ├── SectionPills.js
│ ├── SectionPreFooter.js
│ ├── SectionTabs.js
│ └── SectionTypography.js
├── ecommerce
│ ├── SectionBlog.js
│ ├── SectionLatestOffers.js
│ └── SectionProducts.js
├── landing-page
│ ├── SectionProduct.js
│ ├── SectionTeam.js
│ └── SectionWork.js
├── presentation-page
│ ├── SectionCards.js
│ ├── SectionComponents.js
│ ├── SectionContent.js
│ ├── SectionDescription.js
│ ├── SectionExamples.js
│ ├── SectionFreeDemo.js
│ ├── SectionOverview.js
│ ├── SectionPricing.js
│ └── SectionSections.js
├── pricing-page
│ ├── SectionFeatures.js
│ └── SectionPricing.js
└── sections-page
├── SectionBlogs.js
├── SectionContacts.js
├── SectionFeatures.js
├── SectionHeaders.js
├── SectionPricing.js
├── SectionProjects.js
├── SectionTeams.js
└── SectionTestimonials.js
At present, we officially aim to support the last two versions of the following browsers:
- Demo: https://demos.creative-tim.com/nextjs-material-kit-pro/presentation?ref=njsmkp-readme
- Download Page: https://www.creative-tim.com/product/nextjs-material-kit-pro?ref=njsmkp-readme
- Documentation: https://demos.creative-tim.com/nextjs-material-kit-pro/documentation/tutorial?ref=njsmkp-readme
- License Agreement: https://www.creative-tim.com/license?ref=njsmkp-readme
- Support: https://www.creative-tim.com/contact-us?ref=njsmkp-readme
- Issues: Github Issues Page
- Nepcha Analytics - Analytics tool for your website
- Dashboards:
HTML | React | Angular | Vue | Laravel | Vuetify |
---|---|---|---|---|---|
We use GitHub Issues as the official bug tracker for the NextJS Material Kit PRO. Here are some advices for our users that want to report an issue:
- Make sure that you are using the latest version of the NextJS Material Kit PRO. 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 2022 Creative Tim (https://www.creative-tim.com/?ref=njsmkp-readme)
-
Creative Tim license
- Tutorials
- Affiliate Program (earn money)
- Blog Creative Tim
- Free Products from Creative Tim
- Premium Products from Creative Tim
- React Products from Creative Tim
- Angular Products from Creative Tim
- VueJS Products from Creative Tim
- More products from Creative Tim
- Check our Bundles here
Twitter: https://twitter.com/CreativeTim
Facebook: https://www.facebook.com/CreativeTim
Dribbble: https://dribbble.com/creativetim