// data.jsx — project and photo data
// Using Unsplash source URLs (stable IDs) for placeholder imagery

const PROJECTS = [
  {
    id: 'incredible-world',
    title: 'Incredible World',
    year: '2024',
    location: 'Various',
    blurb: 'A wandering survey of color, surface, and coincidence. The work finds rhythm in the ordinary — a bus shelter, a supermarket aisle, a Tuesday afternoon.',
    photos: [
      { id: 'iw1', src: 'photos/iw-boy-painting.jpg', caption: 'At the Painting', place: 'Museum, 2024' },
      { id: 'iw2', src: 'photos/iw-bus.jpg', caption: 'Consolidated Bus Transit', place: 'New York, 2024' },
      { id: 'iw3', src: 'photos/iw-orange-leaves.jpg', caption: 'Orange on Black', place: 'Paris, 2023' },
      { id: 'iw4', src: 'photos/iw-market.jpg', caption: 'Sens de la Fête', place: 'Paris, 2023' },
      { id: 'iw5', src: 'photos/iw-gallery.jpg', caption: 'Two Portraits', place: 'Museum, 2024' },
      { id: 'iw6', src: 'photos/iw-christmas-door.jpg', caption: 'Green Coat', place: 'Lisbon, 2023' },
    ],
  },
  {
    id: 'rain',
    title: 'Rain',
    year: '2023',
    location: 'New York · Paris · Tokyo',
    blurb: 'Eleven frames made on wet days. An exercise in restraint: the same subject — water, glass, a person in a coat — returned to until the noise falls away.',
    photos: [
      { id: 'r1', src: 'photos/rain-umbrella-motion.jpg', caption: 'Passing Through', place: 'Tokyo, 2023' },
      { id: 'r2', src: 'photos/rain-puddle-cobble.jpg', caption: 'Reflection, Cobbles', place: 'New York, 2022' },
      { id: 'r3', src: 'photos/rain-two-silhouettes.jpg', caption: 'Two Figures', place: 'Paris, 2023' },
      { id: 'r4', src: 'photos/rain-boulanger.jpg', caption: 'Boulanger', place: 'Paris, 2023' },
      { id: 'r5', src: 'photos/rain-yellow-stairs.jpg', caption: 'Pink Umbrella', place: 'Tokyo, 2022' },
      { id: 'r6', src: 'photos/rain-yellow-hood.jpg', caption: 'Yellow Hood', place: 'Tokyo, 2022' },
      { id: 'r7', src: 'photos/rain-bus-window.jpg', caption: 'Through the Window', place: 'New York, 2023' },
      { id: 'r8', src: 'photos/rain-branches.jpg', caption: 'Branches', place: 'New York, 2023' },
      { id: 'r9', src: 'photos/rain-city-bw.jpg', caption: 'City Reflected', place: 'New York, 2023' },
      { id: 'r10', src: 'photos/rain-red-umbrella-subway.jpg', caption: 'Red Umbrella', place: 'New York, 2023' },
      { id: 'r11', src: 'photos/rain-essex-market.jpg', caption: 'Essex Market', place: 'New York, 2023' },
    ],
  },
  {
    id: 'street',
    title: 'Street',
    year: '2024',
    location: 'New York · Porto · Lisbon',
    blurb: 'Made on foot, in cities I didn\u2019t know. The series is about light cutting across a sidewalk, about the small theater of a stranger at a shop window \u2014 looking, passing, being seen.',
    photos: [
      { id: 's1', src: 'photos/street-shop-window.jpg', caption: 'Welcome', place: 'Porto, 2023' },
      { id: 's2', src: 'photos/street-phonebooth.jpg', caption: 'Through the Booth', place: 'Madrid, 2024' },
      { id: 's3', src: 'photos/street-silhouette-balcony.jpg', caption: 'Silhouette, Rua 271', place: 'Porto, 2023' },
      { id: 's4', src: 'photos/street-orange-coat.jpg', caption: 'Bairro Arte', place: 'Lisbon, 2023' },
      { id: 's5', src: 'photos/street-smoker.jpg', caption: 'Smoke Break', place: 'Porto, 2023' },
      { id: 's6', src: 'photos/street-fendi.jpg', caption: 'E 57 St', place: 'New York, 2024' },
      { id: 's7', src: 'photos/street-eataly.jpg', caption: 'Eataly', place: 'New York, 2024' },
      { id: 's8', src: 'photos/street-subway-mask.jpg', caption: 'Line 2', place: 'Guangzhou, 2022' },
    ],
  },
];

const BIO = {
  name: 'Yingjie Liang',
  role: 'Photographer',
  email: 'yingjie.liang@gmail.com',
  instagram: '@yingjie.liang',
  based: 'Shenzhen — and the road',
  about: [
    "Entrepreneur in Shenzhen until 2014. Photographer since.",
    "She travels, mostly. The work is made on the way.",
  ],
  journal: [
    { year: '2024', places: 'New York · Porto · Tokyo' },
    { year: '2023', places: 'Paris · Seoul · Hong Kong' },
    { year: '2022', places: 'Osaka · Taipei · Berlin' },
    { year: '2019', places: 'Reykjavík · Marrakech' },
    { year: '2014', places: 'First camera.' },
  ],
  exhibitions: [
    { year: '2025', item: 'Group show — forthcoming' },
    { year: '2024', item: 'Solo show — Shenzhen' },
    { year: '2023', item: 'Group show — details TBD' },
  ],
};

window.PROJECTS = PROJECTS;
window.BIO = BIO;
