import React from "react" import logo from "../../images/tph-logo.png" import * as SC from "./styles" import ArrowRight from "../../icons/arrow-right.svg" function MenuItem({ children, to }: { children: React.ReactNode; to: string }) { return ( {children} ) } const Sidebar = () => { return ( about rules faq hotbot documentation tech spotlight ) } export default Sidebar