blob: 0b773e9c86dbf919b608c52e1a7a48d49c54107c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import Branding from '@components/Branding/Branding';
import Toolbar from '@components/Toolbar/Toolbar';
import styles from './Header.module.scss';
const Header = ({ isHome }: { isHome: boolean }) => {
return (
<header id="top" className={styles.wrapper}>
<div className={styles.body}>
<Branding isHome={isHome} />
<Toolbar />
</div>
</header>
);
};
export default Header;
|