feat(SW-187): fix merge

This commit is contained in:
Pontus Dreij
2024-09-06 14:05:41 +02:00
parent 5a6d068c75
commit aa63c4bc45
2 changed files with 3 additions and 264 deletions

View File

@@ -1,14 +1,6 @@
export type FooterMainNav = {
url: string
title: string
openInNewTab: boolean
isExternal: boolean
}
export type FooterMainNavProps = {
mainLinks: FooterMainNav[]
}
import type { LanguageSwitcherData } from "@/types/requests/languageSwitcher"
export type FooterSecondaryNav = {
export type FooterLink = {
isExternal: boolean
openInNewTab: boolean
title: string
@@ -49,6 +41,7 @@ export type FooterSecondaryNavProps = {
export type FooterDetailsProps = {
socialMedia?: FooterSocialMedia
tertiaryLinks?: FooterLink[]
languageUrls?: LanguageSwitcherData
}
export type FooterNavigationProps = FooterMainNavProps & FooterSecondaryNavProps