Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

init #37

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

init #37

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
171 changes: 171 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.43.1",
"react-query": "^3.39.3",
"react-router-dom": "^6.8.1",
"react-scripts": "^5.0.1",
"simplebar-react": "^3.2.1",
Expand Down
5 changes: 0 additions & 5 deletions src/layouts/dashboard/header/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ import Iconify from '../../../components/iconify';
//
import Searchbar from './Searchbar';
import AccountPopover from './AccountPopover';
import LanguagePopover from './LanguagePopover';
import NotificationsPopover from './NotificationsPopover';

// ----------------------------------------------------------------------

Expand Down Expand Up @@ -57,7 +55,6 @@ export default function Header({ onOpenNav }) {
<Iconify icon="eva:menu-2-fill" />
</IconButton>

<Searchbar />
<Box sx={{ flexGrow: 1 }} />

<Stack
Expand All @@ -68,8 +65,6 @@ export default function Header({ onOpenNav }) {
sm: 1,
}}
>
<LanguagePopover />
<NotificationsPopover />
<AccountPopover />
</Stack>
</StyledToolbar>
Expand Down
8 changes: 3 additions & 5 deletions src/layouts/dashboard/nav/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@ export default function Nav({ openNav, onCloseNav }) {
'& .simplebar-content': { height: 1, display: 'flex', flexDirection: 'column' },
}}
>
<Box sx={{ px: 2.5, py: 3, display: 'inline-flex' }}>
<Logo />
</Box>
<Box sx={{ px: 2.5, py: 3, display: 'inline-flex' }}>{/* <Logo /> */}</Box>

<Box sx={{ mb: 5, mx: 2.5 }}>
<Link underline="none">
Expand All @@ -79,7 +77,7 @@ export default function Nav({ openNav, onCloseNav }) {

<Box sx={{ flexGrow: 1 }} />

<Box sx={{ px: 2.5, pb: 3, mt: 10 }}>
{/* <Box sx={{ px: 2.5, pb: 3, mt: 10 }}>
<Stack alignItems="center" spacing={3} sx={{ pt: 5, borderRadius: 2, position: 'relative' }}>
<Box
component="img"
Expand All @@ -101,7 +99,7 @@ export default function Nav({ openNav, onCloseNav }) {
Upgrade to Pro
</Button>
</Stack>
</Box>
</Box> */}
</Scrollbar>
);

Expand Down