creativetimofficial / ct-purity-ui-dashboard-pro

6 stars 1 forks source link

Purity UI Dashboard PRO Tweet

version GitHub issues open GitHub issues closed

Product Gif

Most trendiest, complex and innovative Premium Dashboard Made by Creative Tim & Simmmple. Check our latest Premium ReactJS Dashboard based on Chakra UI.

Designed for those who like modern UI elements and beautiful websites. Made of hundred of elements, designed blocks and fully coded pages, Purity UI Dashboard PRO is ready to help you create stunning websites and webapps.

We created many examples for pages like Sign In, Profile and so on. Just choose between a Basic Design, an illustration or a cover and you are good to go!

Fully Coded Elements

Purity UI Dashboard PRO is built with over 300 frontend individual elements, like buttons, inputs, navbars, nav tabs, cards, or alerts, giving you the freedom of choosing and combining. All components can take variations in color, which you can easily modify using 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 Chakra UI Dashboard is coming with prebuilt design blocks, so the development process is seamless, switching from our pages to the real website is very easy to be done.

Check all components here.

Documentation built by Developers

Each element is well presented in a very complex documentation. You can read more about the documentation 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. Every page is spaced well, with attractive layouts and pleasing shapes. From specially designed dashboards for smart homes, virtual reality, and automotives to CRM admins, Purity UI Dashboard PRO has everything you need to quickly set up an amazing project.

View example pages here.

HELPFUL LINKS

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

React Figma
Purity PRO ReactJS Chakra Dashboard Purity PRO Figma Chakra Dashboard

Demo

View all Pages.

Quick start

Quick start options:

Terminal Commands

  1. Download and Install NodeJs LTS version from NodeJs Official Page.
  2. Navigate to the root / directory and run yarn install/npm install to install our local dependencies.

Documentation

The documentation for the Purity UI Dashboard PRO is hosted at our website.

File Structure

Within the download you'll find the following directories and files:

purity-ui-dashboard-pro/
├── .gitigonore
├── CHANGELOG.md
├── commit.sh
├── gulpfile.js
├── ISSUE_TEMPLATE.md
├── jsconfig.json
├── package-lock.json
├── package.json
├── README.md
├── documentation
├── node_modules
├── public
│   ├── apple-icon.png
│   ├── favicon.ico
│   ├── index.html
│   └── manifest.json
└── src
    ├── assets
    │   ├── css
    │   │   └── pud-dashboard-styles.css
    │   ├── img
    │   └── svg
    ├── components
    │   ├── Calendars
    │   │   └── EventCalendar.js
    │   ├── Card
    │   │   ├── Card.js
    │   │   ├── CardBody.js
    │   │   ├── CardFooter.js
    │   │   └── CardHeader.js
    │   ├── Charts
    │   │   ├── BarChart.js
    │   │   ├── BubbleChart.js
    │   │   ├── DonutChart.js
    │   │   ├── LineBarChart.js
    │   │   ├── LineChart.js
    │   │   ├── PieChart.js
    │   │   ├── PolarChart.js
    │   │   └── RadarChart.js
    │   ├── Configurator
    │   │   └── Configurator.js
    │   ├── Editor
    │   │   └── Editor.js
    │   ├── FixedPlugin
    │   │   └── FixedPlugin.js
    │   ├── Footer
    │   │   └── Footer.js
    │   ├── Globe
    │   │   └── Globe.js
    │   ├── Icons
    │   │   ├── IconBox.js
    │   │   └── Icons.js
    │   ├── Layout
    │   │   ├── MainPanel.js
    │   │   ├── PanelContainer.js
    │   │   └── PanelContent.js
    │   ├── Menu
    │   │   └── ItemContent.js
    │   ├── Navbars
    │   │   ├── Searchbar
    │   │   │   └── SearchBar.js
    │   │   ├── Settings
    │   │   │   └── SettingsBar.js
    │   │   ├── AdminNavbar.js
    │   │   ├── AdminNavbarLinks.js
    │   │   └── AuthNavbar.js
    │   ├── RTLProvider
    │   │   └── RTLProvider.js
    │   ├── Scrollbar
    │   │   └── Scrollbar.js
    │   ├── Separator
    │   │   └── Separator.js
    │   ├── Sidebar
    │   │   ├── Sidebar.js
    │   │   └── SidebarHelp.js
    │   └── Tables
    │       ├── BasicTable.js
    │       ├── BillingRow.js
    │       ├── DashboardTableRow.js
    │       ├── InvoicesRow.js
    │       ├── SearchTable1.js
    │       ├── SearchTable2.js
    │       ├── TablesProjectRow.js
    │       ├── TablesTableRow.js
    │       ├── TimelineRow.js
    │       └── TransactionRow.js
    ├── contexts
    │   └── SidebarContext.js
    ├── layouts
    │   ├── Admin.js
    │   ├── Auth.js
    │   └── RTL.js
    ├── theme
    │   ├── additions
    │   │   ├── card
    │   │   │   ├── Card.js
    │   │   │   ├── CardBody.js
    │   │   │   ├── CardFooter.js
    │   │   │   └── CardHeader.js
    │   │   ├── layout
    │   │   │   ├── MainPanel.js
    │   │   │   ├── PanelContainer.js
    │   │   │   └── PanelContent.js
    │   ├── components
    │   │   ├── badge.js
    │   │   ├── button.js
    │   │   ├── drawer.js
    │   │   └── link.js
    │   ├── foundations
    │   │   ├── breakpoints.js
    │   │   ├── fonts.js
    │   │   └── text.js
    │   ├── styles.js
    │   └── theme.js
    ├── variables
    │   ├── calendar.js
    │   ├── charts.js
    │   ├── columnsData.js
    │   ├── general.js
    │   ├── tableData1.json
    │   └── tableData2.json
    └── views
        ├── Applications
        │   ├── Calendar.js
        │   ├── DataTables.js
        │   ├── Kanban.js
        │   └── Wizard.js
        ├── Authentication
        │   ├── SignIn
        │   │   ├── SignInBasic.js
        │   │   ├── SignInCover.js
        │   │   └── SignInIllustration.js
        │   ├── DataTables
        │   │   ├── SignInBasic.js
        │   │   ├── SignInCover.js
        │   │   └── SignInIllustration.js
        ├── Dashboard
        │   ├── CRM.js
        │   └── Default.js
        ├── Ecommerce
        │   ├── Orders
        │   │   ├── OrderDetails.js
        │   │   └── OrderList.js
        │   └── Products
        │   │   ├── EditProduct.js
        │   │   ├── NewProduct.js
        │   │   └── ProductPage.js
        ├── Pages
        │   ├── Account
        │   │   ├── Billing.js
        │   │   ├── Invoice.js
        │   │   └── Settings.js
        │   ├── Profile
        │   │   ├── Overview.js
        │   │   ├── Projects.js
        │   │   └── Teams.js
        │   ├── Projects
        │   │   ├── General.js
        │   │   └── Timeline.js
        │   ├── Users
        │   │   ├── NewUsers.js
        │   │   └── Reports.js
        │   ├── Alerts.js
        │   ├── Charts.js
        │   ├── Pricing.js
        │   ├── RTLPage.js
        │   └── Widgets.js
        ├── index.js
        └── routes.js

Browser Support

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

Resources

Reporting Issues

We use GitHub Issues as the official bug tracker for the Purity UI Dashboard. 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 Purity UI Dashbaord. Check the CHANGELOG from your dashboard on our CHANGE LOG File.
  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.

Technical Support or Questions

If you have questions or need help integrating the product please contact us instead of opening an issue.

Licensing

Useful Links

Social Media - Creative Tim

Twitter: https://twitter.com/CreativeTim

Facebook: https://www.facebook.com/CreativeTim

Dribbble: https://dribbble.com/creativetim

Instagram: https://www.instagram.com/CreativeTimOfficial

Social Media - Simmmple

Twitter: https://twitter.com/simmmple_web

Facebook: https://www.facebook.com/simmmple.web

Dribbble: https://dribbble.com/simmmple

Instagram: https://www.instagram.com/simmmple.web