Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
minimal-ui-kit committed Jun 27, 2021
1 parent 0bc12e4 commit dac7fb8
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LICENSE → LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Minimal UI
Copyright (c) 2021 Minimal UI ([https://minimals.cc/](https://minimals.cc/))

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
40 changes: 40 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
## Minimal UI(Free version)

[![Minimal UI KIT](https://www.dropbox.com/s/cg8fwosrrs53zgp/cover.jpg?dl=1)](https://minimal-free.vercel.app/)

> Free React Admin Dashboard made with Material UI components and React.
| [FREE Version](https://minimal-free.vercel.app/) | [PRO Version](https://material-ui.com/store/items/minimal-dashboard/) |
| ------------------------------------------------ | :-------------------------------------------------------------------- |
| **7** Demo Pages | **38** demo pages |
| - | ✔ TypeScript version |
| - | ✔ Design files (sketch & figma) |
| | [Learn more](https://docs-minimals.vercel.app/package) |

## Page Demo

- [Dashboard](https://minimal-free.vercel.app/dashboard/app)
- [Users](https://minimal-free.vercel.app/dashboard/user)
- [Product](https://minimal-free.vercel.app/dashboard/products)
- [Blog](https://minimal-free.vercel.app/dashboard/blog)
- [Login](https://minimal-free.vercel.app/login)
- [Register](https://minimal-free.vercel.app/register)
- [Not Found](https://minimal-free.vercel.app/404)

## Quick start

- Node js 14+

- Npm js 6+

- Install dependencies: `npm install` or `yarn`

- Start the server: `npm run start` or `yarn start`

## License

- Licensed under MIT (https://github.com/minimal-ui-kit/minimal.free/blob/main/LICENSE.md)

## Contact Us

- Email Us: [email protected]
2 changes: 1 addition & 1 deletion src/components/_dashboard/app/AppNewsUpdate.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function NewsItem({ news }) {
sx={{ width: 48, height: 48, borderRadius: 1.5 }}
/>
<Box sx={{ minWidth: 240 }}>
<Link component={RouterLink} to="#" color="inherit">
<Link to="#" color="inherit" underline="hover" component={RouterLink}>
<Typography variant="subtitle2" noWrap>
{title}
</Typography>
Expand Down
4 changes: 2 additions & 2 deletions src/layouts/dashboard/SidebarConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ const sidebarConfig = [
icon: getIcon(peopleFill)
},
{
title: 'products',
path: '/dashboard/shop',
title: 'product',
path: '/dashboard/products',
icon: getIcon(shoppingBagFill)
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/pages/DashboardApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {

export default function DashboardApp() {
return (
<Page title="Dashboard: App | Minimal-UI">
<Page title="Dashboard | Minimal-UI">
<Container maxWidth="xl">
<Box sx={{ pb: 5 }}>
<Typography variant="h4">Hi, Welcome back</Typography>
Expand Down
2 changes: 1 addition & 1 deletion src/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function Router() {
{ path: '/', element: <Navigate to="/dashboard/app" replace /> },
{ path: 'app', element: <DashboardApp /> },
{ path: 'user', element: <User /> },
{ path: 'shop', element: <Products /> },
{ path: 'products', element: <Products /> },
{ path: 'blog', element: <Blog /> }
]
},
Expand Down

0 comments on commit dac7fb8

Please sign in to comment.