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