Start your development with a premium dashboard for NextJS, Bootstrap 4, Reactstrap and React. Argon perfectly combines using NextJS reusable HTML and React and modular CSS with a modern styling and beautiful markup throughout each page template in the pack.
NextJS Argon Dashboard PRO is built with over 200 individual components, giving you the freedom of choosing and combining. All components can take variations in colour, that you can easily modify using SASS files.
You will save a lot of time going from prototyping to full-functional code, because all elements are implemented. This Dashboard 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.
Each element is well presented in a very complex documentation. You can read more about the idea behind this dashboard here. You can check the components here and the foundation here.
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.
- Install NodeJS LTS version 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)
- Press the download button near NextJS Argon Dashboard 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 run dev
- Or you can simply run
npm run install:clean
(if you use a linux based terminal) which will installnode_modules
and also will start your project. - If you have an error something containing Module not found please make sure your
next.config.js
,pages/_app.js
andpages/_document.js
files is configured as that from our product - (Optional) You can create a new nextjs application
- Check their official docs here: https://nextjs.org/learn/basics/create-nextjs-app
- Copy what you need from NextJS Argon Dashboard PRO to your own project)
- Also, if you have issues with integrating your project with our product, please check that you have our config (
nextjs.config.js
,pages/_app.js
andpages/_document.js
) integrated with yours as well - Here is a useful thread on integrating our product with other projects
- Navigate to https://localhost:3000
During the development of this dashboard, we have used many existing resources from awesome developers. We want to thank them for providing their tools open source.
Let us know your thoughts below. And good luck with development!
- Versions
- Demo
- Quick Start
- Documentation
- File Structure
- Browser Support
- Resources
- FREE Versions
- Kit Versions
- Reporting Issues
- Licensing
- Useful Links
NextJS | NodeJS | React | Angular | VueJS |
---|---|---|---|---|
React Native | Laravel | Bootstrap | BootstrapVue | Nuxt | Svelte |
---|---|---|---|---|---|
The documentation for the NextJS Argon Dashboard PRO is hosted at our website.
Within the download you'll find the following directories and files:
NextJS Argon Dashboard PRO
.
├── CHANGELOG.md
├── README.md
├── ISSUE_TEMPLATE.md
├── next.config.js
├── package.json
├── routes.js
├── Documentation
│ └── documentation.html
├── assets
│ ├── css
│ │ ├── nextjs-argon-dashboard-pro.css
│ │ ├── nextjs-argon-dashboard-pro.css.map
│ │ └── nextjs-argon-dashboard-pro.min.css
│ ├── fonts
│ │ └── nucleo
│ ├── img
│ │ ├── brand
│ │ │ └── favicon.ico
│ │ ├── icons
│ │ │ ├── cards
│ │ │ ├── common
│ │ │ └── flags
│ │ └── theme
│ ├── scss
│ │ ├── bootstrap
│ │ │ ├── mixins
│ │ │ ├── utilities
│ │ │ └── vendor
│ │ ├── core
│ │ │ ├── alerts
│ │ │ ├── avatars
│ │ │ ├── badges
│ │ │ ├── breadcrumbs
│ │ │ ├── buttons
│ │ │ ├── cards
│ │ │ ├── charts
│ │ │ ├── close
│ │ │ ├── collapse
│ │ │ ├── content
│ │ │ ├── custom-forms
│ │ │ ├── dropdowns
│ │ │ ├── footers
│ │ │ ├── forms
│ │ │ ├── grid
│ │ │ ├── headers
│ │ │ ├── icons
│ │ │ ├── list-groups
│ │ │ ├── maps
│ │ │ ├── masks
│ │ │ ├── medias
│ │ │ ├── mixins
│ │ │ ├── modals
│ │ │ ├── navbars
│ │ │ ├── navs
│ │ │ ├── paginations
│ │ │ ├── popovers
│ │ │ ├── progresses
│ │ │ ├── reboot
│ │ │ ├── rtl
│ │ │ ├── sections
│ │ │ ├── separators
│ │ │ ├── shortcuts
│ │ │ ├── tables
│ │ │ ├── timeline
│ │ │ ├── type
│ │ │ ├── utilities
│ │ │ └── vendors
│ │ ├── custom
│ │ └── react
│ │ ├── bootstrap
│ │ └── plugins
│ └── vendor
│ ├── @fortawesome
│ ├── animate.css
│ ├── bootstrap-rtl
│ ├── fullcalendar
│ ├── nucleo
│ ├── quill
│ ├── select2
│ └── sweetalert2
├── components
│ ├── Footers
│ │ ├── AdminFooter.js
│ │ └── AuthFooter.js
│ ├── Headers
│ │ ├── AlternativeHeader.js
│ │ ├── AuthHeader.js
│ │ ├── CardsHeader.js
│ │ ├── IndexHeader.js
│ │ ├── ProfileHeader.js
│ │ ├── RTLProfileHeader.js
│ │ └── SimpleHeader.js
│ ├── Navbars
│ │ ├── AdminNavbar.js
│ │ ├── AuthNavbar.js
│ │ └── IndexNavbar.js
│ ├── PageChange
│ │ └── PageChange.js
│ └── Sidebar
│ └── Sidebar.js
├── layouts
│ ├── Admin.js
│ ├── Auth.js
│ └── RTL.js
├── pages
│ ├── 404.js
│ ├── _app.js
│ ├── _document.js
│ ├── _error.js
│ ├── admin
│ │ ├── alternative.js
│ │ ├── buttons.js
│ │ ├── calendar.js
│ │ ├── cards.js
│ │ ├── charts.js
│ │ ├── components.js
│ │ ├── dashboard.js
│ │ ├── elements.js
│ │ ├── google.js
│ │ ├── grid.js
│ │ ├── icons.js
│ │ ├── notifications.js
│ │ ├── profile.js
│ │ ├── react-bs-tables.js
│ │ ├── sortable.js
│ │ ├── tables.js
│ │ ├── timeline.js
│ │ ├── typography.js
│ │ ├── validation.js
│ │ ├── vector.js
│ │ └── widgets.js
│ ├── auth
│ │ ├── lock.js
│ │ ├── login.js
│ │ ├── pricing.js
│ │ └── register.js
│ ├── index.js
│ └── rtl
│ └── rtl-support.js
└── variables
├── charts.js
└── general.js
At present, we officially aim to support the last two versions of the following browsers:
- Demo: https://demos.creative-tim.com/nextjs-argon-dashboard-pro/admin/dashboard?ref=njsadp-github-readme
- Download Page: https://www.creative-tim.com/product/nextjs-argon-dashboard-pro?ref=njsadp-github-readme
- Documentation: https://www.creative-tim.com/learning-lab/nextjs/overview/argon-dashboard?ref=njsadp-github-readme
- License Agreement: https://www.creative-tim.com/license?ref=njsadp-github-readme
- Support: https://www.creative-tim.com/contact-us?ref=njsadp-github-readme
- Issues: Github Issues Page
NextJS | ASP.NET | NodeJS | React | Angular |
---|---|---|---|---|
React Native | VueJS | Laravel | Bootstrap | BootstrapVue | Django |
---|---|---|---|---|---|
HTML | Angular | React | VueJS |
---|---|---|---|
HTML | Angular | React | VueJS |
---|---|---|---|
We use GitHub Issues as the official bug tracker for the NextJS Argon Dashboard 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 Argon Dashboard 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.
- Copyright 2021 Creative Tim (https://www.creative-tim.com/?ref=njsadp-github-readme)
- 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?ref=creativetim
Facebook: https://www.facebook.com/CreativeTim?ref=creativetim
Dribbble: https://dribbble.com/creativetim?ref=creativetim
Instagram: https://www.instagram.com/CreativeTimOfficial?ref=creativetim