feat(SW-187) Secondary navigation

This commit is contained in:
Pontus Dreij
2024-08-30 08:48:28 +02:00
parent bb454d77c4
commit d057db6156
9 changed files with 29 additions and 18 deletions

View File

@@ -8,10 +8,10 @@ export type FooterMainNavProps = {
export type FooterSecondaryNav = {
id: string
href: string
title: string
openInNewTab: boolean
isExternal: boolean
openInNewTab: boolean
title: string
url: string
}
export type FooterSecondaryNavProps = {
secondaryLinks: {
@@ -21,9 +21,11 @@ export type FooterSecondaryNavProps = {
appDownloads: {
title: string
links: {
title: string
href: string
id: string
href: {
href: string
title: string
}
type: string
}[]
}
}