Giter Club home page Giter Club logo

vision-ui-dashboard-react's Introduction

version GitHub issues open GitHub issues closed

Product Gif

Most trendiest, complex and innovative Free Dashboard Made by Simmmple & Creative Tim. Check our latest Free ReactJS Dashboard.

Designed for those who like modern UI elements and beautiful websites. Made of hundred of elements, designed blocks and fully coded pages, Vision UI Dashboard React 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

Vision UI Dashboard React is built with over 70 frontend individual elements, like buttons, inputs, navbars, navtabs, cards or alerts, giving you the freedom of choosing and combining. All components can take variations in colour, that you can easily modify using MUI's style props.

You will save a lot of time going from prototyping to full-functional code, because all elements are implemented. This Free MUI 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, Vision UI Dashboard Free React 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:

  • Material UI - Modern Open source framework
  • ApexCharts.js - Modern & Interactive Open-source charts
  • Quill Editor - ReactJS Text Editor provided by Quill
  • React Table - Collection of hooks for building powerful ReactJD tables
  • ReactJS - A popular JavaScript library for building user interfaces

Let us know your thoughts below. And good luck with development!

Table of Contents

Versions

| React | Chakra | | ]------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | Vision UI Dashboard Free React | Vision UI Dashboard Free Chakra |

Demo

View all Pages.

Quick start

Quick start options:

Preparation

  1. Download and Install NodeJs 16 from the official website or use nvm to quickly switch versions.
  2. Navigate to the projects root directory and run yarn install or npm install to install the projects dependencies.

Documentation

The documentation for the Vision UI Dashboard Free is hosted at our website.

File Structure

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

vision-dashboard-react-free/
├── public
│   ├── apple-icon.png
│   ├── favicon.ico
│   ├── index.html
│   ├── manifest.json
│   └── robots.txt
└── src
    ├── assets
    │   ├── images
    │   └── theme
    │       ├── base
    │       │   ├── borders.js
    │       │   ├── boxShadows.js
    │       │   ├── breakpoints.js
    │       │   ├── colors.js
    │       │   ├── globals.js
    │       │   ├── typography.css
    │       │   └── typography.js
    │       ├── components
    │       │   ├── button
    │       │   ├── card
    │       │   ├── dialog
    │       │   ├── form
    │       │   ├── list
    │       │   ├── menu
    │       │   ├── stepper
    │       │   ├── table
    │       │   ├── tabs
    │       │   ├── appBar.js
    │       │   ├── avatar.js
    │       │   ├── breadcrumbs.js
    │       │   ├── buttonBase.js
    │       │   ├── container.js
    │       │   ├── divider.js
    │       │   ├── icon.js
    │       │   ├── iconButton.js
    │       │   ├── linearProgress.js
    │       │   ├── link.js
    │       │   ├── popover.js
    │       │   ├── slider.js
    │       │   ├── svgIcon.js
    │       │   └── tooltip.js
    │       ├── functions
    │       │   ├── boxShadow.js
    │       │   ├── gradientChartLine.js
    │       │   ├── hexToRgb.js
    │       │   ├── linearGradient.js
    │       │   ├── pxToRem.js
    │       │   ├── radialGradient.js
    │       │   ├── rgba.js
    │       │   └── tripleLinearGradient.js
    │       ├── index.js
    │       └── theme-rtl.js
    ├── components
    │   ├── VuiAlert
    │   │   ├── index.js
    │   │   ├── VuiAlertCloseIcon.js
    │   │   └── VuiAlertRoot.js
    │   ├── VuiAvatar
    │   │   ├── index.js
    │   │   └── VuiAvatarRoot.js
    │   ├── VuiBadge
    │   │   ├── index.js
    │   │   └── VuiBadgeRoot.js
    │   ├── VuiBox
    │   │   ├── index.js
    │   │   └── VuiBoxRoot.js
    │   ├── VuiButton
    │   │   ├── index.js
    │   │   └── VuiButtonRoot.js
    │   ├── VuiInput
    │   │   ├── index.js
    │   │   ├── VuiInputIconBoxRoot.js
    │   │   ├── VuiInputIconRoot.js
    │   │   ├── VuiInputIcon.js
    │   │   └── VuiInputWithIconRoot.js
    │   ├── VuiPagination
    │   │   ├── index.js
    │   │   └── VuiPaginationItemRoot.js
    │   ├── VuiProgress
    │   │   ├── index.js
    │   │   └── VuiProgressRoot.js
    │   ├── VuiSwitch
    │   │   ├── index.js
    │   │   └── VuiSwitchRoot.js
    │   └── VuiTypography
    │       ├── index.js
    │       └── VuiTypographyRoot.js
    ├── context
    │   └── index.js
    ├── examples
    │   ├── Breadcrumbs
    │   │   └── index.js
    │   ├── Calendar
    │   │   ├── CalendarRoot.js
    │   │   └── index.js
    │   ├── Cards
    │   │   ├── InfoCards
    │   │   │   └── index.js
    │   │   ├── MasterCard
    │   │   │   └── index.js
    │   │   ├── ProjectCards
    │   │   │   └── index.js
    │   │   └── StatisticsCards
    │   │      └── index.js
    │   ├── Charts
    │   │   ├── BarCharts
    │   │   │   └── BarChart.js
    │   │   └── LineCharts
    │   │       └── LineChart.js
    │   ├── Configurator
    │   │   ├── ConfiguratorRoot.js
    │   │   └── index.js
    │   ├── Footer
    │   │   └── index.js
    │   ├── GradientBorder
    │   │   ├── GradientBorderRoot.js
    │   │   └── index.js
    │   ├── Icons
    │   ├── Items
    │   │   ├── index.js
    │   │   └── styles.js
    │   ├── LayoutContainers
    │   │   ├── DashboardLayout
    │   │   │   └── index.js
    │   │   └── PageLayout
    │   │       └── index.js
    │   ├── Lists
    │   │   └── index.js
    │   ├── Navbars
    │   │   ├── DashboardNavbar
    │   │   │   ├── index.js
    │   │   │   └── styles.js
    │   │   ├── DefaultNavbar
    │   │   │   ├── DefaultNavbarLink.js
    │   │   │   ├── DefaultNavbarMobile.js
    │   │   │   └── index.js
    │   ├── Scrollbar
    │   │   └── index.js
    │   ├── Sidenav
    │   │   ├── styles
    │   │   │   ├── sidenav.js
    │   │   │   ├── sidenavCard.js
    │   │   │   └── sidenavCollapse.js
    │   │   ├── index.js
    │   │   ├── SidenavCard.js
    │   │   ├── SidenavCollapse.js
    │   │   └── SidenavRoot.js
    │   ├── Tables
    │   │   └── index.js
    │   └── Timeline
    │       ├── context
    │       │   └── index.js
    │       ├── TimelineItem
    │       │   ├── index.js
    │       │   └── styles.js
    │       └── TimelineList
    │           └── index.js
    ├── layouts
    │   ├── authentication
    │   │   ├── components
    │   │   │   ├── BasicLayout
    │   │   │   │   └── index.js
    │   │   │   ├── CoverLayout
    │   │   │   │   └── index.js
    │   │   │   ├── Footer
    │   │   │   │   └── index.js
    │   │   │   ├── IllustrationLayout
    │   │   │   │   └── index.js
    │   │   │   ├── Separator
    │   │   │   │   └── index.js
    │   │   │   └── Socials
    │   │   │       └── index.js
    │   │   ├── sign-in
    │   │   │   └── index.js
    │   │   └── sign-up
    │   │       └── index.js
    │   ├── billing
    │   │   ├── components
    │   │   │   ├── Bill
    │   │   │   │   └── index.js
    │   │   │   ├── BillingInformation
    │   │   │   │   └── index.js
    │   │   │   ├── CreditBalance
    │   │   │   │   └── index.js
    │   │   │   ├── Invoice
    │   │   │   │   └── index.js
    │   │   │   ├── PaymentMethod
    │   │   │   │   └── index.js
    │   │   │   ├── Transaction
    │   │   │   │   └── index.js
    │   │   │   └── Transactions
    │   │   │       └── index.js
    │   │   └── index.js
    │   ├── dashboard
    │   │   ├── components
    │   │   │   ├── OrderOverview
    │   │   │   │   └── index.js
    │   │   │   ├── Projects
    │   │   │   │   └── index.js
    │   │   │   ├── RefferalTracking
    │   │   │   │   └── index.js
    │   │   │   ├── SatisfactionRate
    │   │   │   │   └── index.js
    │   │   │   └── WelcomeMark
    │   │   │       └── index.js
    │   │   ├── data
    │   │   │   ├── barChartData.js
    │   │   │   ├── barChartOptions.js
    │   │   │   ├── lineChartData.js
    │   │   │   └── lineChartOptions.js
    │   │   └── index.js
    │   ├── profile
    │   │   ├── components
    │   │   │   ├── CarInformations
    │   │   │   │   └── index.js
    │   │   │   ├── Header
    │   │   │   │   └── index.js
    │   │   │   ├── PlatformSettings
    │   │   │   │   └── index.js
    │   │   │   └── Welcome
    │   │   │       └── index.js
    │   │   ├── data
    │   │   │   ├── lineChartData1.js
    │   │   │   ├── lineChartData2.js
    │   │   │   ├── lineChartOptions1.js
    │   │   │   └── lineChartOptions2.js
    │   │   └── index.js
    │   ├── rtl
    │   │   ├── components
    │   │   │   ├── OrderOverview
    │   │   │   │   └── index.js
    │   │   │   ├── Projects
    │   │   │   │   └── index.js
    │   │   │   ├── RefferalTracking
    │   │   │   │   └── index.js
    │   │   │   ├── SatisfactionRate
    │   │   │   │   └── index.js
    │   │   │   └── WelcomeMark
    │   │   │       └── index.js
    │   │   ├── data
    │   │   │   ├── barChartData.js
    │   │   │   ├── barChartOptions.js
    │   │   │   ├── lineChartData.js
    │   │   │   └── lineChartOptions.js
    │   │   └── index.js
    │   ├── tables
    │   │   ├── data
    │   │   │   ├── authorsTableData.js
    │   │   │   └── projectsTableData.js
    │   │   └── index.js
    ├── variables
    │   └── charts.js
    ├── App.js
    ├── index.js
    ├── routes.js
    ├── .eslintrc.json
    ├── .gitignore
    ├── .prettierrc.json
    ├── CHANGELOG.md
    ├── ISSUE_TEMPLALTE.md
    ├── jsconfig.json
    ├── package-lock.json
    ├── package.json
    └── README.md

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 Vision 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 Vision 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

vision-ui-dashboard-react's People

Contributors

difronzo avatar dragosct avatar milosmns avatar simmmpleweb avatar tdumitrache avatar ttytm avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

vision-ui-dashboard-react's Issues

[Bug] Google chrome performance issues

Version

1.0.0

Reproduction link

https://demos.creative-tim.com/vision-ui-dashboard-react/?ref=readme-vudreact#/dashboard

Operating System

Mac and windows

Device

Macbook pro and pc

Browser & Version

Versión 100.0.4896.127 (Build oficial) (arm64)

Steps to reproduce

Go to your demo preview: https://demos.creative-tim.com/vision-ui-dashboard-react/?ref=readme-vudreact#/dashboard with the latest version of google chrome

What is expected?

Normal performance

What is actually happening?

Lof performance


Solution

Additional comments

Low performance google chrome

Hello,

We are experiencing performance issues only in google chrome last version: Versión 100.0.4896.127 (Build oficial) (arm64)

In firefox and brave works well but not in chrome. Can we change some thing to fix it?

Regards

[Bug] opensslErrorStack

Version

3.0.0

Reproduction link

https://www.creative-tim.com/new-issue/vision-ui-dashboard-react

Operating System

Windows 11

Device

Asus

Browser & Version

Chrome

Steps to reproduce

unzip the file
npm install
npm start

What is expected?

I expect the shell of the app to render on localhost

What is actually happening?

receive this error:
Error: error:0308010C:digital envelope routines::unsupported
at new Hash (node:internal/crypto/hash:71:19)
at Object.createHash (node:crypto:133:10)
at module.exports (C:\Users\marty\source\repos\evergreen-ai\node_modules\webpack\lib\util\createHash.js:135:53)
at NormalModule._initBuildHash (C:\Users\marty\source\repos\evergreen-ai\node_modules\webpack\lib\NormalModule.js:417:16)
at C:\Users\marty\source\repos\evergreen-ai\node_modules\webpack\lib\NormalModule.js:452:10
at C:\Users\marty\source\repos\evergreen-ai\node_modules\webpack\lib\NormalModule.js:323:13
at C:\Users\marty\source\repos\evergreen-ai\node_modules\loader-runner\lib\LoaderRunner.js:367:11
at C:\Users\marty\source\repos\evergreen-ai\node_modules\loader-runner\lib\LoaderRunner.js:233:18
at context.callback (C:\Users\marty\source\repos\evergreen-ai\node_modules\loader-runner\lib\LoaderRunner.js:111:13)
at C:\Users\marty\source\repos\evergreen-ai\node_modules\babel-loader\lib\index.js:59:103 {
opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ],
library: 'digital envelope routines',
reason: 'unsupported',
code: 'ERR_OSSL_EVP_UNSUPPORTED'


Solution

I have none at this point. I can't downgrade my version of Node.js

Additional comments

[Feature Request] Is there any plan for a plain vanilla boostrap 5 / js version of this project?

What is your enhancement?

Hi! Wow! This dashboard is absolutely stunnnnnning! I now almost regret not to have started my most recent webapp in react! 😆
My webapp is based on Svelte (SvelteKit actually.....instead of react/next.js for instance) and I'm using boostrap 5 for styling.

I was wondering if there's any future for me of using your completely amazing "Vision UI Dashboard", with my stack? (either a svelte version or plain vanilla bootstrap 5 version would do the trick)

Thanks, no matter your answer, wonderful work, really.
Cheers,
François

[Bug] Warning: Functions are not valid as a React child.

Version

React v18

Reproduction link

https://github.com/creativetimofficial/vision-ui-dashboard-react

Operating System

Windows

Device

Asus Vivobook 15

Browser & Version

Brave@latest

Steps to reproduce

npm start

What is expected?

There should be no warnings in console

What is actually happening?

Warning: Functions are not valid as a React child. This may happen if you return a Component instead of from render. Or maybe you meant to call this function rather than return it.
at Routes (http://localhost:3000/static/js/bundle.js:414109:5)
at InnerThemeProvider (http://localhost:3000/static/js/bundle.js:56183:70)
at ThemeProvider (http://localhost:3000/static/js/bundle.js:55885:5)
at ThemeProvider (http://localhost:3000/static/js/bundle.js:56203:5)
at App (http://localhost:3000/static/js/bundle.js:716:97)
at VisionUIControllerProvider (http://localhost:3000/static/js/bundle.js:9684:5)
at Router (http://localhost:3000/static/js/bundle.js:414042:15)
at BrowserRouter (http://localhost:3000/static/js/bundle.js:412851:5)
printWarning @ react-dom.development.js:86


Solution

Additional comments

Upgrade project for React v18 and react-router-dom@latest

[Bug] Warning : Failed prop type: Invalid prop variant of value standard supplied to ForwardRef(_c)

Version

React v18

Reproduction link

https://github.com/creativetimofficial/vision-ui-dashboard-react

Operating System

Windows

Device

Asus Vivobook 15

Browser & Version

Brave@latest

Steps to reproduce

npm start

What is expected?

There should be no warnings in console

What is actually happening?

Warning: Failed prop type: Invalid prop variant of value standard supplied to ForwardRef(_c), expected one of ["gradient","contained"].
at _c (http://localhost:3000/static/js/bundle.js:7456:5)
printWarning @ react-jsx-dev-runtime.development.js:97


Solution

Additional comments

[Bug] Google chrome performance issues

Version

latest

Reproduction link

https://demos.creative-tim.com/vision-ui-dashboard-react/?ref=readme-vudreact#/dashboard

Operating System

Mac and windows

Device

Macbook pro and pc

Browser & Version

google chrome Versión 105.0.5195.125 (Build oficial) (arm64)

Steps to reproduce

So bad performance in google chrome latests versions, so lagged.

In your documentation you say that support the 2 latest versions of all browser. It's not true, your live demo have so much lag with the latest version of google chrome, only works well in chromium.

What is expected?

Works smooth

What is actually happening?

Low performance, impossible to use.


Solution

Additional comments

please fix this issue, You can't use it with the most used browser of all!! So is useless for the moment.

Warning: Functions are not valid as a React child.

Warning: Functions are not valid as a React child. This may happen if you return a Component instead of from render. Or maybe you meant to call this function rather than return it.
at Routes (http://localhost:3000/static/js/bundle.js:414109:5)
at InnerThemeProvider (http://localhost:3000/static/js/bundle.js:56183:70)
at ThemeProvider (http://localhost:3000/static/js/bundle.js:55885:5)
at ThemeProvider (http://localhost:3000/static/js/bundle.js:56203:5)
at App (http://localhost:3000/static/js/bundle.js:716:97)
at VisionUIControllerProvider (http://localhost:3000/static/js/bundle.js:9684:5)
at Router (http://localhost:3000/static/js/bundle.js:414042:15)
at BrowserRouter (http://localhost:3000/static/js/bundle.js:412851:5)
printWarning @ react-dom.development.js:86

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.