import Link from 'next/link'; import styles from 'src/styles/modules/layout/header.module.scss'; type Props = { full?: boolean; originalPath?: string }; const Header = ({ full, originalPath }: Props) => { return ( ); }; export default Header;