import React from "react"; import { Settings } from "react-feather"; import { NavigationItem, NAVIGATION_ITEM_TYPE } from "./type"; import { Button, ButtonSize } from "./../UI/Button"; import logo from "../../static/images/tradetrust_logo.svg"; export const MockLogo = (): React.ReactElement => { return ( ); }; export const MockLeftNavItems: NavigationItem[] = [ { schema: NAVIGATION_ITEM_TYPE.NavigationDropDownList, id: "resources", label: "Resources", path: "", dropdownItems: [ { id: "learn", label: "Learn", path: "/learn", }, { id: "faq", label: "FAQ", path: "/faq", }, { id: "guidelines", label: "Guidelines (Non-Ethereum)", path: "/guidelines", }, ], }, { schema: NAVIGATION_ITEM_TYPE.NavigationDropDownList, id: "news-events", label: "News & Events", path: "", dropdownItems: [ { id: "media", label: "Media", path: "/media", }, { id: "event", label: "Event", path: "/event", }, ], }, { schema: NAVIGATION_ITEM_TYPE.NavigationLink, id: "contact", label: "Contact", path: "/contact", }, ]; export const MockRightNavItems: NavigationItem[] = [ { schema: NAVIGATION_ITEM_TYPE.NavigationIconButton, id: "settings", label: "Settings", path: "/settings", icon: Settings, }, { schema: NAVIGATION_ITEM_TYPE.NavigationLabelButton, id: "create-documents", label: "Create Doc", path: "https://creator.tradetrust.io/", customLink: ( ), }, { schema: NAVIGATION_ITEM_TYPE.NavigationLabelButton, id: "verify", label: "Verify Doc", path: "/verify", customLink: ( ), }, ]; export const MockMobileNavItems: NavigationItem[] = MockLeftNavItems.concat(MockRightNavItems);