creativetimofficial / ct-nextjs-argon-dashboard-pro

NextJS version of Argon Dashboard PRO React
7 stars 3 forks source link

NextJS Argon Dashboard PRO Tweet

version license GitHub issues open GitHub issues closed Join the chat at https://gitter.im/NIT-dgp/General Chat

Product Image

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.

Fully Coded Components

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.

Complex Documentation

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.

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.

Quick Start

Special thanks

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!

Table of Contents

Versions

NextJS NodeJS React Angular VueJS
NextJS Argon Dashboard PRO Argon Dashboard PRO Nodejs Argon Dashboard PRO React Argon Dashboard PRO Angular Vue Argon Dashboard PRO
React Native Laravel Bootstrap BootstrapVue Nuxt Svelte
Argon PRO React Native Argon Dashboard PRO Laravel Argon Dashboard PRO BootstrapVue Argon Dashboard PRO Nuxt Argon Dashboard PRO Nuxt Argon Dashboard PRO

Demo

View More.

Quick start

Documentation

The documentation for the NextJS Argon Dashboard PRO is hosted at our website.

File Structure

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

Browser Support

At present, we officially aim to support the last two versions of the following browsers:

Resources

FREE Versions

NextJS ASP.NET NodeJS React Angular
Argon Dashboard Asp.net Argon Dashboard Asp.net Argon Dashboard Nodejs Argon Dashboard React Argon Dashboard Angular
React Native VueJS Laravel Bootstrap BootstrapVue Django
Argon React Native Vue Argon Dashboard Argon Dashboard Laravel Argon Dashboard BootstrapVue Argon Dashboard Argon Dashboard Django

Kit Versions

FREE Kit Versions

HTML Angular React VueJS
Argon Design System PRO HTML Argon Design System PRO Angular Argon Design System PRO React Argon Design System PRO React

PRO Kit Versions

HTML Angular React VueJS
Argon Design System PRO HTML Argon Design System PRO Angular Argon Design System PRO React Argon Design System PRO React

Reporting Issues

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:

  1. Make sure that you are using the latest version of the NextJS Argon Dashboard PRO. Check the CHANGELOG from your dashboard on our website.
  2. Providing us reproducible steps for the issue will shorten the time it takes for it to be fixed.
  3. Some issues may be browser specific, so specifying in what browser you encountered the issue might help.

Licensing

Useful Links

Social Media

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