summaryrefslogtreecommitdiffstats
path: root/src/components/Header/Header.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Header/Header.tsx')
-rw-r--r--src/components/Header/Header.tsx9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/components/Header/Header.tsx b/src/components/Header/Header.tsx
index 599fdc0..52da2e8 100644
--- a/src/components/Header/Header.tsx
+++ b/src/components/Header/Header.tsx
@@ -1,9 +1,14 @@
import Branding from '@components/Branding/Branding';
+import MainNav from '@components/MainNav/MainNav';
+import styles from './Header.module.scss';
const Header = () => {
return (
- <header>
- <Branding />
+ <header className={styles.wrapper}>
+ <div className={styles.body}>
+ <Branding />
+ <MainNav />
+ </div>
</header>
);
};