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

export const properties: Property[] = [
  {
    id: '1',
    propertyType: 'Condo',
    address: '1250 Broadway Ave, Apt 12B',
    city: 'Manhattan',
    state: 'NY',
    zipCode: '10001',
    name: 'Luxury Manhattan Condo with Skyline Views',
    price: 1250,
    yearBuilt: 2019,
    images: [
      'https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=600&h=400&fit=crop',
      'https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=600&h=400&fit=crop',
      'https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=600&h=400&fit=crop',
      'https://images.unsplash.com/photo-1484154218962-a197022b5858?w=600&h=400&fit=crop',
    ],
    isFavorite: false,
    coordinates: [40.7484, -73.9857], // Near Empire State Building
  },
  {
    id: '2',
    propertyType: 'Apartment',
    address: '425 Park Avenue South',
    city: 'Brooklyn',
    state: 'NY',
    zipCode: '11201',
    name: 'Modern Brooklyn Apartment',
    price: 1200,
    yearBuilt: 2021,
    images: [
      'https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=600&h=400&fit=crop',
      'https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=600&h=400&fit=crop',
      'https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=600&h=400&fit=crop',
    ],
    isFavorite: true,
    coordinates: [40.6892, -73.9857], // Brooklyn Heights
  },
  {
    id: '3',
    propertyType: 'House',
    address: '892 Oak Street',
    city: 'Queens',
    state: 'NY',
    zipCode: '11375',
    name: 'Spacious Family Home with Garden',
    price: 900,
    yearBuilt: 2015,
    images: [
      'https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=600&h=400&fit=crop',
      'https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=600&h=400&fit=crop',
      'https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=600&h=400&fit=crop',
      'https://images.unsplash.com/photo-1484154218962-a197022b5858?w=600&h=400&fit=crop',
    ],
    isFavorite: false,
    coordinates: [40.7282, -73.8317], // Forest Hills, Queens
  },
  {
    id: '4',
    propertyType: 'Studio',
    address: '55 Water Street, Unit 5C',
    city: 'Manhattan',
    state: 'NY',
    zipCode: '10004',
    name: 'Cozy Studio in Financial District',
    price: 1100,
    yearBuilt: 2018,
    images: [
      'https://images.unsplash.com/photo-1484154218962-a197022b5858?w=600&h=400&fit=crop',
      'https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=600&h=400&fit=crop',
      'https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=600&h=400&fit=crop',
    ],
    isFavorite: false,
    coordinates: [40.7033, -74.0170], // Financial District
  },
  {
    id: '5',
    propertyType: 'Penthouse',
    address: '100 Central Park South, PH1',
    city: 'Manhattan',
    state: 'NY',
    zipCode: '10019',
    name: 'Ultra-Luxury Penthouse with Park Views',
    price: 1300,
    yearBuilt: 2020,
    images: [
      'https://images.unsplash.com/photo-1560185127-6ed189bf02f4?w=600&h=400&fit=crop',
      'https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=600&h=400&fit=crop',
      'https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=600&h=400&fit=crop',
    ],
    isFavorite: false,
    coordinates: [40.7657, -73.9760], // Central Park South
  },
  {
    id: '6',
    propertyType: 'Townhouse',
    address: '234 West 10th Street',
    city: 'Manhattan',
    state: 'NY',
    zipCode: '10014',
    name: 'Charming West Village Townhouse',
    price: 1500,
    yearBuilt: 1920,
    images: [
      'https://images.unsplash.com/photo-1560185127-6ed189bf02f4?w=600&h=400&fit=crop',
      'https://images.unsplash.com/photo-1484154218962-a197022b5858?w=600&h=400&fit=crop',
      'https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=600&h=400&fit=crop',
    ],
    isFavorite: false,
    coordinates: [40.7336, -74.0027], // West Village
  },
];
