import type { AllRequestResponse } from "./utils/all" import type { Edges } from "./utils/edges" import type { Image } from "../image" type AppDownload = { href: string imageConnection: Edges } export type Link = { href: string title: string } export type NavigationItem = { links: Link[] title: string } type SocialMedium = { href: string title: string } export type Footer = { title: string about: { title: string text: string } app_downloads: { title: string app_store: AppDownload google_play: AppDownload } logoConnection: Edges navigation: NavigationItem[] social_media: { title: string facebook: SocialMedium instagram: SocialMedium twitter: SocialMedium } trip_advisor: { title: string logoConnection: Edges } } export type GetFooterData = { all_footer: AllRequestResponse