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