import Link from 'next/link' import { useMediumGlobal } from '@/themes/medium' import JumpToTopButton from './JumpToTopButton' export default function BottomMenuBar ({ post, className }) { const { tocVisible, changeTocVisible } = useMediumGlobal() const showTocBotton = post?.toc?.length > 0 const toggleToc = () => { changeTocVisible(!tocVisible) } return (