Skip to content

Commit d94801f

Browse files
committed
helmet removed, role based navigation added, styles updated like tailwind, layout changed from class to functional component
1 parent cafe564 commit d94801f

File tree

151 files changed

+8804
-5584
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+8804
-5584
lines changed

.babelrc.js

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
const plugins = [
2+
[
3+
"babel-plugin-import",
4+
{
5+
libraryName: "@material-ui/core",
6+
// Use "'libraryDirectory': ''," if your bundler does not support ES modules
7+
libraryDirectory: "esm",
8+
camel2DashComponentName: false
9+
},
10+
"core"
11+
],
12+
[
13+
"babel-plugin-import",
14+
{
15+
libraryName: "@material-ui/icons",
16+
// Use "'libraryDirectory': ''," if your bundler does not support ES modules
17+
libraryDirectory: "esm",
18+
camel2DashComponentName: false
19+
},
20+
"icons"
21+
]
22+
];
23+
24+
module.exports = { plugins };

README.md

+68-121
Original file line numberDiff line numberDiff line change
@@ -1,121 +1,68 @@
1-
<h1><a href="https://ui-lib.com/downloads/matx-react-admin/">Matx React Material Design Admin Dashboard Template</a></h1>
2-
3-
<img alt="Matx React Admin" src="https://ui-lib.com/wp-content/uploads/edd/2020/01/marx-react.png" />
4-
5-
6-
<p>MatX is a full-featured React Material Design Admin Dashboard template. MatX is built with React, Redux & Material UIWe implemented all the features you might need to start a new Web application. The free version includes all Material UI components, Form elements, and validation, JWT authentication, Sign in, sign up pages, Vertical navigation, Lazy loading, Code splitting, SASS integration.</p>
7-
8-
<h2>Features</h2>
9-
<ul>
10-
<li>JWT authentication</li>
11-
<li>Role based authentication</li>
12-
<li>Lazy loading components</li>
13-
<li>Code splitting</li>
14-
<li>Dashboard Analytics</li>
15-
<li>UI kits
16-
<ul>
17-
<li>Autocomplete</li>
18-
<li>Buttons</li>
19-
<li>Checkbox</li>
20-
<li>Dialog</li>
21-
<li>Expansion panel</li>
22-
<li>Menu</li>
23-
<li>Progress</li>
24-
<li>Datetime picker</li>
25-
<li>Radio</li>
26-
<li>Switch</li>
27-
<li>Slider</li>
28-
<li>Snackbar</li>
29-
<li>Data table</li>
30-
</ul>
31-
</li>
32-
<li>Forms
33-
<ul>
34-
<li>Basic</li>
35-
<li>Rich text editor</li>
36-
</ul>
37-
</li>
38-
<li>eChart</li>
39-
<li>Session pages
40-
<ul>
41-
<li>Sign in</li>
42-
<li>Sign up</li>
43-
<li>Forgot password</li>
44-
<li>Error page</li>
45-
</ul>
46-
</li>
47-
<li>Drag and drop</li>
48-
<li>Google map</li>
49-
<li>Utilities
50-
<ul>
51-
<li>Color</li>
52-
<li>Spacing</li>
53-
<li>Typography</li>
54-
<li>Display</li>
55-
</ul>
56-
</li>
57-
<li>Multi level menu</li>
58-
</ul>
59-
60-
<h2>Pro features</h2>
61-
<ul>
62-
<li>Horizontal navigation</li>
63-
<li>Forms
64-
<ul>
65-
<li>Single upload</li>
66-
<li>Multiple upload</li>
67-
<li>Wizard</li>
68-
</ul>
69-
</li>
70-
<li>Working Apps
71-
<ul>
72-
<li>CRUD table</li>
73-
<li>Shop/eCommerce</li>
74-
<li>Scrum board</li>
75-
<li>Infinite list</li>
76-
<li>Invoice builder</li>
77-
<li>Event calendar</li>
78-
<li>Chat</li>
79-
<li>Inbox</li>
80-
<li>Todo</li>
81-
</ul>
82-
</li>
83-
<li>Charts
84-
<ul>
85-
<li>eChart</li>
86-
<li>Rechart</li>
87-
<li>Victory chart</li>
88-
<li>React vis</li>
89-
</ul>
90-
</li>
91-
92-
93-
<li>User profile</li>
94-
<li>Plans & pricing</li>
95-
<li>Support</li>
96-
</ul>
97-
98-
<h2 id="availablescripts">Getting started</h2>
99-
100-
<p>In the project directory, you can run:</p>
101-
102-
<h3 id="npmstart"><code>npm start</code></h3>
103-
104-
<p>Runs the app in the development mode.<br>
105-
Open <a href="http://localhost:3000">http://localhost:3000</a> to view it in the browser.</p>
106-
107-
<p>The page will reload if you make edits.<br>
108-
You will also see any lint errors in the console.</p>
109-
110-
<h3 id="npmrunbuild"><code>npm run build</code></h3>
111-
112-
<p>Builds the app for production to the <code>build</code> folder.<br>
113-
It correctly bundles React in production mode and optimizes the build for the best performance.</p>
114-
115-
<p>The build is minified and the filenames include the hashes.<br>
116-
Your app is ready to be deployed!</p>
117-
118-
<h3>Download</h3>
119-
Download From <a href="https://ui-lib.com/downloads/matx-react-admin/">official website</a>
120-
121-
<h3>For questions and support mail us at <a href="mailto:[email protected]">[email protected]</a></h3>
1+
Matx React was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
2+
3+
## Available Scripts
4+
5+
In the project directory, you can run:
6+
7+
### `npm start`
8+
9+
Runs the app in the development mode.<br>
10+
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
11+
12+
The page will reload if you make edits.<br>
13+
You will also see any lint errors in the console.
14+
15+
### `npm test`
16+
17+
Launches the test runner in the interactive watch mode.<br>
18+
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
19+
20+
### `npm run build`
21+
22+
Builds the app for production to the `build` folder.<br>
23+
It correctly bundles React in production mode and optimizes the build for the best performance.
24+
25+
The build is minified and the filenames include the hashes.<br>
26+
Your app is ready to be deployed!
27+
28+
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
29+
30+
### `npm run eject`
31+
32+
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
33+
34+
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
35+
36+
Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
37+
38+
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
39+
40+
## Learn More
41+
42+
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
43+
44+
To learn React, check out the [React documentation](https://reactjs.org/).
45+
46+
### Code Splitting
47+
48+
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
49+
50+
### Analyzing the Bundle Size
51+
52+
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
53+
54+
### Making a Progressive Web App
55+
56+
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
57+
58+
### Advanced Configuration
59+
60+
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
61+
62+
### Deployment
63+
64+
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
65+
66+
### `npm run build` fails to minify
67+
68+
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify

config-overrides.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
const { useBabelRc, override } = require("customize-cra");
2+
3+
module.exports = override(useBabelRc());

0 commit comments

Comments
 (0)