feat(SW-185): Fixing comments

This commit is contained in:
Pontus Dreij
2024-08-22 11:01:31 +02:00
parent 93a0b29075
commit 6f28aee349
18 changed files with 158 additions and 72 deletions

View File

@@ -0,0 +1,26 @@
export type FooterMainNav = {
id: string
href: string
title: string
}
export type FooterMainNavProps = {
mainLinks: FooterMainNav[]
}
export type FooterSecondaryNav = {
id: string
href: string
title: string
image?: {
src: string
}
}
export type FooterSecondaryNavProps = {
secondaryLinks: Record<
string,
{
title: string
links: FooterSecondaryNav[]
}
>
}