feat(SW-185): Fixing comments
This commit is contained in:
26
types/components/footer/navigation.ts
Normal file
26
types/components/footer/navigation.ts
Normal 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[]
|
||||
}
|
||||
>
|
||||
}
|
||||
Reference in New Issue
Block a user