export interface Hotel { id: number; hotelName: string; description: string; price: number; imageUrl: string; rating: number; tags: string[]; }