feat(SW-187): Added tertiary links data

This commit is contained in:
Pontus Dreij
2024-09-05 10:16:55 +02:00
parent 144ab30bc6
commit 05ee4d1717
9 changed files with 93 additions and 20 deletions

View File

@@ -14,9 +14,13 @@ export type FooterSecondaryNav = {
title: string
url: string
}
export type FooterMainNavProps = {
mainLinks: FooterLink[]
}
type FooterSecondaryNavGroup = {
title: string
links: FooterSecondaryNav[]
links: FooterLink[]
}
type FooterLinkWithType = {
href?:
@@ -44,6 +48,7 @@ export type FooterSecondaryNavProps = {
export type FooterDetailsProps = {
socialMedia?: FooterSocialMedia
tertiaryLinks?: FooterLink[]
}
export type FooterNavigationProps = FooterMainNavProps & FooterSecondaryNavProps