mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-29 05:00:43 +10:00
53 lines
910 B
JavaScript
53 lines
910 B
JavaScript
/*
|
|
* 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,
|
|
};
|