Skip to content

gopheracademy/showrunner-web

Repository files navigation

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

  • 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 install node_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 and pages/_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 and pages/_document.js) integrated with yours as well
    • Here is a useful thread on integrating our product with other projects
  • Navigate to https://localhost:3000

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published