diff --git a/packages/app/constants/defaultTheme.json b/packages/app/constants/defaultTheme.json index f248d990..3220de89 100755 --- a/packages/app/constants/defaultTheme.json +++ b/packages/app/constants/defaultTheme.json @@ -18,6 +18,7 @@ "backgroundRepeat": "no-repeat", "backgroundAttachment": "fixed", "top-bar-height": "52px", + "bottom-bar-height": "80px", "compact-mode": false }, "defaultVariant": "dark", diff --git a/packages/app/src/components/Layout/bottomBar/index.jsx b/packages/app/src/components/Layout/bottomBar/index.jsx index b765f466..48260c60 100755 --- a/packages/app/src/components/Layout/bottomBar/index.jsx +++ b/packages/app/src/components/Layout/bottomBar/index.jsx @@ -8,6 +8,8 @@ import { Icons, createIconRender } from "components/Icons" import { WithPlayerContext, Context } from "contexts/WithPlayerContext" +import QuickNavMenu from "components/Layout/quickNav" + import PlayerView from "pages/@mobile-views/player" import CreatorView from "pages/@mobile-views/creator" @@ -111,75 +113,6 @@ const AccountButton = (props) => { } - -const QuickNavMenuItems = [ - { - id: "music", - icon: "MdAlbum", - label: "Music", - location: "/music" - }, - { - id: "tv", - icon: "Tv", - label: "Tv", - location: "/tv" - }, - { - id: "groups", - icon: "MdGroups", - label: "Groups", - location: "/groups", - disabled: true, - }, - { - id: "marketplace", - icon: "Box", - label: "Marketplace", - location: "/marketplace", - disabled: true - }, -] - -const QuickNavMenu = ({ - visible, -}) => { - return