summaryrefslogtreecommitdiffstats
path: root/src/components/Header/Header.tsx
blob: 52da2e81b296c459f6eb11f4efed86a0fe99bfa0 (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 = () => {
  return (
    <header className={styles.wrapper}>
      <div className={styles.body}>
        <Branding />
        <MainNav />
      </div>
    </header>
  );
};

export default Header;