Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839
  1. export const prices = [
  2. { value: '$1000', label: '$1000' },
  3. { value: '$1100', label: '$1100' },
  4. { value: '$1300', label: '$1300' },
  5. { value: '$1500', label: '$1500' },
  6. { value: '$1800', label: '$1800' },
  7. { value: '$2000', label: '$2000' }
  8. ];
  9. export const beds = [
  10. { value: '1', label: '1' },
  11. { value: '2', label: '2' },
  12. { value: '3', label: '3' },
  13. { value: '4+', label: '4+' }
  14. ];
  15. export const baths = [
  16. { value: '1', label: '1+' },
  17. { value: '2', label: '2+' },
  18. { value: '3', label: '3+' }
  19. ];
  20. export const types = [
  21. { value: 'apartments', label: 'apartments' },
  22. { value: 'houses', label: 'houses' },
  23. { value: 'condos', label: 'condos' },
  24. { value: 'townhomes', label: 'townhomes' },
  25. ];
  26. export const lifeStyles = [
  27. { value: 'student-housing', label: 'Student' },
  28. { value: 'senior-housing', label: 'Senior Housing' },
  29. { value: 'short-term', label: 'Short Term' },
  30. { value: 'military', label: 'Military Housing' },
  31. { value: 'corporate', label: 'Corporate Housing' }
  32. ];
  33. export const scrapeFrom = [
  34. { value: 'www.apartments.com', label: 'www.apartments.com' },
  35. ]