export interface IFooterNav { links: Array; } export interface ICities { attributes: { name: string; slug: string; latitude: number; longitude: number; radius: number; country_code: string; }; } export interface ICitiesCollection { data: Array; } export interface IFooterNavLinks { name: string; url: string; } export interface ISports { attributes: { name: string; slug?: string; }; id: string; } export interface ISportsCollection { data: Array; }