| 123456789101112131415161718192021222324252627282930313233343536373839 |
- export const prices = [
- { value: '$1000', label: '$1000' },
- { value: '$1100', label: '$1100' },
- { value: '$1300', label: '$1300' },
- { value: '$1500', label: '$1500' },
- { value: '$1800', label: '$1800' },
- { value: '$2000', label: '$2000' }
- ];
-
- export const beds = [
- { value: '1', label: '1' },
- { value: '2', label: '2' },
- { value: '3', label: '3' },
- { value: '4+', label: '4+' }
- ];
-
- export const baths = [
- { value: '1', label: '1+' },
- { value: '2', label: '2+' },
- { value: '3', label: '3+' }
- ];
-
- export const types = [
- { value: 'apartments', label: 'apartments' },
- { value: 'houses', label: 'houses' },
- { value: 'condos', label: 'condos' },
- { value: 'townhomes', label: 'townhomes' },
- ];
- export const lifeStyles = [
- { value: 'student-housing', label: 'Student' },
- { value: 'senior-housing', label: 'Senior Housing' },
- { value: 'short-term', label: 'Short Term' },
- { value: 'military', label: 'Military Housing' },
- { value: 'corporate', label: 'Corporate Housing' }
- ];
-
- export const scrapeFrom = [
- { value: 'www.apartments.com', label: 'www.apartments.com' },
- ]
|