Skip to content

Commit

Permalink
Remove buy now button from menu
Browse files Browse the repository at this point in the history
  • Loading branch information
canmingir committed Feb 12, 2024
1 parent 6c53070 commit f66eb9f
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/layouts/main/nav/mobile/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,9 @@ import { useEffect } from "react";
import PropTypes from "prop-types";

import List from "@mui/material/List";
import Stack from "@mui/material/Stack";
import Button from "@mui/material/Button";
import Drawer from "@mui/material/Drawer";
import IconButton from "@mui/material/IconButton";

import { paths } from "src/routes/paths";
import { usePathname } from "src/routes/hooks";

import { useBoolean } from "src/hooks/use-boolean";
Expand Down Expand Up @@ -57,19 +54,6 @@ export default function NavMobile({ data }) {
<NavList key={list.title} data={list} />
))}
</List>

<Stack spacing={1.5} sx={{ p: 3 }}>
<Button
fullWidth
variant="contained"
color="inherit"
href={paths.zoneStore}
target="_blank"
rel="noopener"
>
Buy Now
</Button>
</Stack>
</Scrollbar>
</Drawer>
</>
Expand Down

0 comments on commit f66eb9f

Please sign in to comment.