feat(SW-187): Added tertiary links data
This commit is contained in:
@@ -1,20 +1,16 @@
|
||||
export type FooterMainNav = {
|
||||
url: string
|
||||
title: string
|
||||
}
|
||||
export type FooterMainNavProps = {
|
||||
mainLinks: FooterMainNav[]
|
||||
}
|
||||
|
||||
export type FooterSecondaryNav = {
|
||||
export type FooterLink = {
|
||||
isExternal: boolean
|
||||
openInNewTab: boolean
|
||||
title: string
|
||||
url: string
|
||||
}
|
||||
export type FooterMainNavProps = {
|
||||
mainLinks: FooterLink[]
|
||||
}
|
||||
|
||||
type FooterSecondaryNavGroup = {
|
||||
title: string
|
||||
links: FooterSecondaryNav[]
|
||||
links: FooterLink[]
|
||||
}
|
||||
type FooterLinkWithType = {
|
||||
href?:
|
||||
@@ -42,6 +38,7 @@ export type FooterSecondaryNavProps = {
|
||||
|
||||
export type FooterDetailsProps = {
|
||||
socialMedia?: FooterSocialMedia
|
||||
tertiaryLinks?: FooterLink[]
|
||||
}
|
||||
|
||||
export type FooterNavigationProps = FooterMainNavProps & FooterSecondaryNavProps
|
||||
|
||||
Reference in New Issue
Block a user