import { ReactNode } from 'react'; import { useRouter } from 'next/router'; import Link from 'next/link'; import ThemeToggler from 'src/components/buttons/ThemeToggler'; import styles from 'src/styles/modules/layout/header.module.scss'; type Props = { full?: boolean; children?: ReactNode }; const Header = (props: Props) => { const { asPath: path } = useRouter(); return ( ); }; export default Header;