21 lines
571 B
TypeScript
21 lines
571 B
TypeScript
import { footer } from "../mockedData"
|
|
import FooterMainNav from "./MainNav"
|
|
import FooterSecondaryNav from "./SecondaryNav"
|
|
|
|
import styles from "./navigation.module.css"
|
|
|
|
export default function FooterNavigation() {
|
|
const { mainLinks, secondaryLinks, appDownloads } = footer
|
|
return (
|
|
<section className={styles.section}>
|
|
<div className={styles.maxWidth}>
|
|
<FooterMainNav mainLinks={mainLinks} />
|
|
<FooterSecondaryNav
|
|
secondaryLinks={secondaryLinks}
|
|
appDownloads={appDownloads}
|
|
/>
|
|
</div>
|
|
</section>
|
|
)
|
|
}
|