import { useRef } from 'react' import SideBarDrawer from '@/components/SideBarDrawer' import BLOG from '@/blog.config' import Link from 'next/link' import Image from 'next/image' import { useGlobal } from '@/lib/global' const TopNav = ({ tags, currentTag, post, posts, categories, currentCategory }) => { const drawer = useRef() const { locale } = useGlobal() return (
{/* 侧面抽屉 */} {/* 导航栏 */}
) } export default TopNav