export interface DiscoverCardProps {
  id: number;
  title: string;
  type: string;
  price: string;
  image: string;
  logo: string;
  clientType?: string;
  propertyType?: string;
  subtitle?: string;
}
