import { useRef } from 'react' import DarkModeButton from '@/components/DarkModeButton' import SideBarDrawer from '@/components/SideBarDrawer' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faBars } from '@fortawesome/free-solid-svg-icons' import BLOG from '@/blog.config' import Link from 'next/link' const TopNav = ({ tags, currentTag, post, posts, currentSearch, categories, currentCategory }) => { const drawer = useRef() return (
) } export default TopNav