import { Button, Link } from "@nextui-org/react"; import { useAppContext } from "../../contexts/AppContext"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faXmark } from "@fortawesome/free-solid-svg-icons"; import { faDiscord } from "@fortawesome/free-brands-svg-icons"; import { Rules } from "./Rules"; import { Privacy } from "./Privacy"; /** * Information sidebar * * TODO: add customization for this post-event (#46) * * @returns */ export const InfoSidebar = () => { const { infoSidebar, setInfoSidebar } = useAppContext(); return (

Information

Build {__COMMIT_HASH__}
); };