import type { AreaOption } from '../types';

export const topAreas: AreaOption[] = [
  {
    value: 'Manhattan',
    label: 'Manhattan, NY',
  },
  {
    value: 'Brooklyn',
    label: 'Brooklyn, NY',
  },
  {
    value: 'Queens',
    label: 'Queens, NY',
  },
  {
    value: 'The Bronx',
    label: 'The Bronx, NY',
  },
  {
    value: 'Staten Island',
    label: 'Staten Island, NY',
  },
];
