feat(SW-185): Fixed app download images
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
import MaxWidth from "@/components/MaxWidth"
|
||||
|
||||
import { footer } from "../mockedData"
|
||||
import FooterMainNav from "./MainNav"
|
||||
import FooterSecondaryNav from "./SecondaryNav"
|
||||
@@ -7,13 +5,16 @@ import FooterSecondaryNav from "./SecondaryNav"
|
||||
import styles from "./navigation.module.css"
|
||||
|
||||
export default function FooterNavigation() {
|
||||
const { mainLinks, secondaryLinks } = footer
|
||||
const { mainLinks, secondaryLinks, appDownloads } = footer
|
||||
return (
|
||||
<section className={styles.section}>
|
||||
<MaxWidth tag="div" className={styles.maxWidth}>
|
||||
<div className={styles.maxWidth}>
|
||||
<FooterMainNav mainLinks={mainLinks} />
|
||||
<FooterSecondaryNav secondaryLinks={secondaryLinks} />
|
||||
</MaxWidth>
|
||||
<FooterSecondaryNav
|
||||
secondaryLinks={secondaryLinks}
|
||||
appDownloads={appDownloads}
|
||||
/>
|
||||
</div>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user