├── .env ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── Documentation └── tutorial-components.html ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── genezio.yaml ├── jsconfig.json ├── now-ui-dashboard-react.gif ├── package.json ├── public ├── apple-icon.png ├── favicon.ico ├── index.html └── manifest.json └── src ├── assets ├── css │ ├── demo.css │ ├── now-ui-dashboard.css │ ├── now-ui-dashboard.css.map │ └── now-ui-dashboard.min.css ├── fonts │ ├── nucleo-outline.eot │ ├── nucleo-outline.ttf │ ├── nucleo-outline.woff │ └── nucleo-outline.woff2 ├── github │ ├── dashboard.jpg │ ├── maps.jpg │ ├── notification.jpg │ ├── tables.jpg │ └── user_profile.jpg ├── img │ ├── bg1.jpg │ ├── bg11.jpg │ ├── bg3.jpg │ ├── bg4.jpg │ ├── bg5.jpg │ ├── bg6.jpg │ ├── bg7.jpg │ ├── bg8.jpg │ ├── creative-tim-white-slim2.png │ ├── default-avatar.png │ ├── favicon.png │ ├── header.jpg │ ├── image_placeholder.jpg │ ├── james.jpg │ ├── logo.png │ ├── mike.jpg │ └── ryan.jpg └── scss │ ├── now-ui-dashboard.scss │ └── now-ui-dashboard │ ├── _alerts.scss │ ├── _buttons.scss │ ├── _cards.scss │ ├── _checkboxes-radio.scss │ ├── _dropdown.scss │ ├── _fixed-plugin.scss │ ├── _footers.scss │ ├── _images.scss │ ├── _inputs.scss │ ├── _misc.scss │ ├── _mixins.scss │ ├── _navbar.scss │ ├── _nucleo-outline.scss │ ├── _page-header.scss │ ├── _responsive.scss │ ├── _sidebar-and-main-panel.scss │ ├── _tables.scss │ ├── _typography.scss │ ├── _variables.scss │ ├── cards │ ├── _card-chart.scss │ ├── _card-map.scss │ ├── _card-plain.scss │ └── _card-user.scss │ ├── mixins │ ├── _buttons.scss │ ├── _cards.scss │ ├── _dropdown.scss │ ├── _inputs.scss │ ├── _page-header.scss │ ├── _sidebar.scss │ ├── _transparency.scss │ └── _vendor-prefixes.scss │ ├── plugins │ ├── _plugin-animate-bootstrap-notify.scss │ └── _plugin-perfect-scrollbar.scss │ └── react │ ├── custom │ ├── _alerts.scss │ ├── _mixins.scss │ ├── _navbar.scss │ ├── _sidebar-and-main-panel.scss │ └── _tables.scss │ ├── mixins │ └── _vendor-prefixes.scss │ └── react-differences.scss ├── components ├── FixedPlugin │ └── FixedPlugin.js ├── Footer │ └── Footer.js ├── Navbars │ └── DemoNavbar.js ├── PanelHeader │ └── PanelHeader.js └── Sidebar │ └── Sidebar.js ├── index.js ├── layouts └── Admin.js ├── logo-white.svg ├── logo.svg ├── routes.js ├── variables ├── charts.js ├── general.js └── icons.js └── views ├── Dashboard.js ├── Icons.js ├── Maps.js ├── Notifications.js ├── TableList.js ├── Typography.js ├── Upgrade.js └── UserPage.js /.env: -------------------------------------------------------------------------------- 1 | GENERATE_SOURCEMAP=false -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: Autocloser 2 | on: [issues] 3 | jobs: 4 | autoclose: 5 | runs-on: ubuntu-latest 6 | steps: 7 | - name: Issue auto-closer 8 | uses: roots/issue-closer-action@v1.1 9 | with: 10 | repo-token: ${{ secrets.GITHUB_TOKEN }} 11 | issue-close-message: "@${issue.user.login} this issue was automatically closed because it did not follow our rules:\n\n
\n\n\n\nIMPORTANT: Please use the following link to create a new issue:\n\nhttps://www.creative-tim.com/new-issue/now-ui-dashboard-react\n\n**If your issue was not created using the app above, it will be closed immediately.**\n\n\n\nLove Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit:\n👉 https://www.creative-tim.com/bundles\n👉 https://www.creative-tim.com\n\n\n\n\n" 12 | issue-pattern: (\#\#\# Version([\S\s.*]*?)\#\#\# Reproduction link([\S\s.*]*?)\#\#\# Operating System([\S\s.*]*?)\#\#\# Device([\S\s.*]*?)\#\#\# Browser & Version([\S\s.*]*?)\#\#\# Steps to reproduce([\S\s.*]*?)\#\#\# What is expected([\S\s.*]*?)\#\#\# What is actually happening([\S\s.*]*?)---([\S\s.*]*?)\#\#\# Solution([\S\s.*]*?)\#\#\# Additional comments([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>)|(\#\#\# What is your enhancement([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>) 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | node_modules 5 | 6 | # testing 7 | /coverage 8 | 9 | # production 10 | /build 11 | /dist 12 | 13 | # misc 14 | .DS_Store 15 | .env.local 16 | .env.development.local 17 | .env.test.local 18 | .env.production.local 19 | 20 | npm-debug.log* 21 | yarn-debug.log* 22 | yarn-error.log* 23 | 24 | package-lock.json 25 | /src/assets/sass/now-ui-dashboard.css 26 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | auto-install-peers=true 3 | strict-peer-dependencies=false -------------------------------------------------------------------------------- /Documentation/tutorial-components.html: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | 23 | 24 | 29 | 30 | 31 | 32 |
39 | Handcrafted by our friends from{" "} 40 | NucleoApp 41 |
42 |{prop}
58 |A free Admin for React, Reactstrap, and React Hooks.
85 | Please Checkout{" "} 86 | 91 | The Full Documentation 92 | 93 | . 94 |
95 | 96 | } 97 | /> 98 |Click to view notifications
195 |55 | {prop} 56 | | 57 | ); 58 | return{prop} | ; 59 | })} 60 |
---|---|
70 | {prop} 71 | | 72 | ); 73 | return{prop} | ; 74 | })} 75 |
Here is a subtitle for this table
88 |97 | {prop} 98 | | 99 | ); 100 | return{prop} | ; 101 | })} 102 |
---|---|
112 | {prop} 113 | | 114 | ); 115 | return{prop} | ; 116 | })} 117 |
Created using Montserrat Font Family
37 |71 | ParagraphI will be the leader of a company that 72 | ends up being worth billions of dollars, because I got the 73 | answers. I understand culture. I am the nucleus. I think 74 | that’s a responsibility that I have, to push possibilities, 75 | to show people, this is the level that things could be at. 76 |
77 |81 |92 |82 | "I will be the leader of a company that ends up being 83 | worth billions of dollars, because I got the answers. I 84 | understand culture. I am the nucleus. I think that’s a 85 | responsibility that I have, to push possibilities, to show 86 | people, this is the level that things could be at." 87 |
91 |
88 |
89 | - Noaa 90 |
97 | I will be the leader of a company that ends up being worth 98 | billions of dollars, because I got the answers... 99 |
100 |104 | I will be the leader of a company that ends up being worth 105 | billions of dollars, because I got the answers... 106 |
107 |111 | I will be the leader of a company that ends up being worth 112 | billions of dollars, because I got the answers...{" "} 113 |
114 |118 | I will be the leader of a company that ends up being worth 119 | billions of dollars, because I got the answers...{" "} 120 |
121 |125 | I will be the leader of a company that ends up being worth 126 | billions of dollars, because I got the answers... 127 |
128 |132 | I will be the leader of a company that ends up being worth 133 | billions of dollars, because I got the answers...{" "} 134 |
135 |46 | Are you looking for more components? Please check our Premium 47 | Version of Now UI Dashboard React. 48 |
49 |55 | | Free | 56 |PRO | 57 |
---|---|---|
Components | 62 |16 | 63 |160 | 64 |
Plugins | 67 |5 | 68 |13 | 69 |
Example Pages | 72 |7 | 73 |27 | 74 |
Documentation | 77 |78 | 79 | | 80 |81 | 82 | | 83 |
SASS Files | 86 |87 | 88 | | 89 |90 | 91 | | 92 |
Login/Register/Lock Pages | 95 |96 | 97 | | 98 |99 | 100 | | 101 |
Premium Support | 104 |105 | 106 | | 107 |108 | 109 | | 110 |
113 | | Free | 114 |From $59 | 115 |
118 | | 119 | 122 | | 123 |124 | 132 | | 133 |
michael24
177 |
179 | "Lamborghini Mercy
180 | Your chick she so thirsty
181 | I'm in that two seat Lambo"
182 |