import { Nav, Navbar } from 'react-bootstrap' import styles from './header.module.css' import Link from 'next/link' import { useRouter } from 'next/router' export default function TopHeader ({ cat }) { const router = useRouter() const within = router.query.within const userType = router.query.userType || 'stacked' return ( <> {cat.split('/')[0] === 'users' && } ) }