feat(SW-185): basic setup for new footer with mocked data
This commit is contained in:
19
components/Footer/Navigation/index.tsx
Normal file
19
components/Footer/Navigation/index.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import MaxWidth from "@/components/MaxWidth"
|
||||
|
||||
import { navigationData } from "../mockedData"
|
||||
import FooterMainNav from "./MainNav"
|
||||
import FooterSecondaryNav from "./SecondaryNav"
|
||||
|
||||
import styles from "./navigation.module.css"
|
||||
|
||||
export default async function FooterNavigation() {
|
||||
const { mainLinks, secondaryLinks } = navigationData
|
||||
return (
|
||||
<section className={styles.section}>
|
||||
<MaxWidth tag="div" className={styles.maxWidth}>
|
||||
<FooterMainNav mainLinks={mainLinks} />
|
||||
<FooterSecondaryNav secondaryLinks={secondaryLinks} />
|
||||
</MaxWidth>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user