export interface FeaturedTripsProps { title: string; cards: FeaturedTrip[]; } export interface FeaturedTrip { imageSrc: string; imageAlt: string; title: string; location: string; language?: string; onButtonClick?: () => void; }