change footer information, add lei certificate
This commit is contained in:
26
types/footer.ts
Normal file
26
types/footer.ts
Normal file
@ -0,0 +1,26 @@
|
||||
export interface Footer {
|
||||
data: {
|
||||
contact: Contact
|
||||
docs: FooterDoc[]
|
||||
}
|
||||
id: number
|
||||
name: string
|
||||
}
|
||||
|
||||
export interface Contact {
|
||||
header: string
|
||||
ownerAddress: string
|
||||
ownerMail: string
|
||||
}
|
||||
|
||||
export interface FooterDoc {
|
||||
footer_section: string
|
||||
translation: string
|
||||
data: FooterPdf[]
|
||||
}
|
||||
|
||||
export interface FooterPdf {
|
||||
name: string
|
||||
translation: string
|
||||
guest_avaliable: boolean
|
||||
}
|
@ -125,4 +125,5 @@ export type {
|
||||
PeriodToFirstPiece,
|
||||
} from "./planPrediction";
|
||||
export type { Product } from "./product";
|
||||
export type { FrontMenu, FrontMenuLang, UIFrontMenu } from "./frontMenu";
|
||||
export type { FrontMenu, FrontMenuLang, UIFrontMenu } from "./frontMenu";
|
||||
export type {Contact, Footer, FooterDoc, FooterPdf} from './footer'
|
Reference in New Issue
Block a user