export interface ICarouselItem {
    id: number | string;
    title: string;
    description: string;
    background: string;
    url: string;
}
