diff --git a/src/components/navigationBar/mobileMenu.tsx b/src/components/navigationBar/mobileMenu.tsx index 60e2e41..e88bf71 100644 --- a/src/components/navigationBar/mobileMenu.tsx +++ b/src/components/navigationBar/mobileMenu.tsx @@ -15,6 +15,7 @@ import React from "react"; import { SearchBar } from "./serchBar"; import ListItem from "../listItem"; import { businessComponents, projectComponents, dataroomComponents } from "./menu"; +import { ThemeToggle } from "../theme-toggle"; export function MobileMenu() { const [isVisible, setIsVisible] = useState(false); @@ -29,11 +30,11 @@ export function MobileMenu() { animate={{ x: 0 }} exit={{ x: "-100%" }} transition={{ duration: 0.3 }} - className="fixed top-0 left-0 w-full bg-gray-800 text-white flex" + className="fixed top-0 left-0 w-full bg-blue-500 flex items-center" > - setIsVisible(false)} /> + setIsVisible(false)} /> - + Businesses @@ -45,7 +46,7 @@ export function MobileMenu() { - Projects + Projects
    {projectComponents.map((component) => ( @@ -57,7 +58,7 @@ export function MobileMenu() { - Dataroom + Dataroom
      {dataroomComponents.map((component) => ( @@ -69,7 +70,8 @@ export function MobileMenu() { - + +