/* * Marketplace specific configuration. */ export const amenities = [ { key: 'towels', label: 'Towels', }, { key: 'bathroom', label: 'Bathroom', }, { key: 'swimming_pool', label: 'Swimming pool', }, { key: 'own_drinks', label: 'Own drinks allowed', }, { key: 'jacuzzi', label: 'Jacuzzi', }, { key: 'audiovisual_entertainment', label: 'Audiovisual entertainment', }, { key: 'barbeque', label: 'Barbeque', }, { key: 'own_food_allowed', label: 'Own food allowed', }, ]; export const categories = [ { key: 'smoke', label: 'Smoke' }, { key: 'electric', label: 'Electric' }, { key: 'wood', label: 'Wood' }, { key: 'other', label: 'Other' }, ]; // Price filter configuration // Note: unlike most prices this is not handled in subunits export const priceFilterConfig = { min: 0, max: 1000, step: 5, };