fix: add missing footer links

This commit is contained in:
Arvid Norlin
2024-02-12 11:08:09 +01:00
parent c5a0f5f848
commit 7f37897502
3 changed files with 81 additions and 33 deletions
+12 -1
View File
@@ -1,5 +1,16 @@
import { NavigationItem } from "@/types/requests/footer"
import { Lang } from "@/types/lang"
import {
ExternalLink,
InternalLink,
NavigationItem,
} from "@/types/requests/footer"
export type FooterNavigationProps = {
linkGroups: NavigationItem[]
lang: Lang
}
export type FooterNavigationItemProps = {
linkObject: InternalLink | ExternalLink
lang: Lang
}