diff --git a/components/Footer/Details/details.module.css b/components/Footer/Details/details.module.css index d8bd17d93..6b1ef6c05 100644 --- a/components/Footer/Details/details.module.css +++ b/components/Footer/Details/details.module.css @@ -59,6 +59,7 @@ } .bottomContainer { border-top: 1px solid var(--Scandic-Peach-80); + padding-top: var(--Spacing-x2); flex-direction: row; } .navigationContainer { diff --git a/components/Footer/Navigation/SecondaryNav/index.tsx b/components/Footer/Navigation/SecondaryNav/index.tsx index 4fe45fc16..33460e7b9 100644 --- a/components/Footer/Navigation/SecondaryNav/index.tsx +++ b/components/Footer/Navigation/SecondaryNav/index.tsx @@ -1,15 +1,41 @@ +import Image from "@/components/Image" import Link from "@/components/TempDesignSystem/Link" import Body from "@/components/TempDesignSystem/Text/Body" import styles from "./secondarynav.module.css" -import { FooterSecondaryNavProps } from "@/types/components/footer/navigation" +import { + AppDownnLoadLinks, + FooterSecondaryNavProps, +} from "@/types/components/footer/navigation" export default function FooterSecondaryNav({ secondaryLinks, + appDownloads, }: FooterSecondaryNavProps) { return (
+ {secondaryLinks.map((link) => (