aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Header/Header.tsx
blob: 6691eb91bb953db3b776f279a1eea9ea543a85df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import Branding from '@components/Branding/Branding';
import MainNav from '@components/MainNav/MainNav';
import styles from './Header.module.scss';

const Header = ({ isHome }: { isHome: boolean }) => {
  return (
    <header className={styles.wrapper}>
      <div className={styles.body}>
        <Branding isHome={isHome} />
        <MainNav />
      </div>
    </header>
  );
};

export default Header;