interface TripProgramBlockProps { meetingPoint: string | null; itinerary: string | null; whatsIncluded: string | null; whatsExcluded: string | null; } export function TripProgramBlock({ meetingPoint, itinerary, whatsIncluded, whatsExcluded, }: TripProgramBlockProps) { const hasAny = meetingPoint || itinerary || whatsIncluded || whatsExcluded; if (!hasAny) return null; return (
{meetingPoint}
{itinerary}
{whatsIncluded}
{whatsExcluded}