diff --git a/src/components/HeaderBottom/HeaderBottom.module.scss b/src/components/HeaderBottom/HeaderBottom.module.scss new file mode 100644 index 0000000..b6bb0e5 --- /dev/null +++ b/src/components/HeaderBottom/HeaderBottom.module.scss @@ -0,0 +1,7 @@ +@use '../../variables'; + +.header-bottom { + @media (max-width: 1024px) { + display: none; + } +} diff --git a/src/components/HeaderBottom/HeaderBottom.tsx b/src/components/HeaderBottom/HeaderBottom.tsx new file mode 100644 index 0000000..7984c44 --- /dev/null +++ b/src/components/HeaderBottom/HeaderBottom.tsx @@ -0,0 +1,16 @@ +import React from 'react'; + +import styles from "./HeaderBottom.module.scss"; + +import { HeaderNavBar } from '../HeaderNavBar/HeaderNavBar'; + +const HeaderBottom = () => { + + return ( +