import { GalleryImage } from './schema.ts'; export const linearGalleryImages: GalleryImage[] = [ { id: 'everest', src: 'https://images.unsplash.com/photo-1585409677983-0f6c41ca9c3b?w=1200&auto=format&fit=crop&q=80', alt: 'Everest at sunrise', caption: 'Dawn over the Khumbu — Everest catches the first light.' }, { id: 'annapurna', src: 'https://images.unsplash.com/photo-1605648916367-0b1c5f5b9c9a?w=1200&auto=format&fit=crop&q=80', alt: 'Annapurna range', caption: 'Annapurna South as seen from Poon Hill.' }, { id: 'mustang', src: 'https://images.unsplash.com/photo-1580137189272-c9379f8864fd?w=1200&auto=format&fit=crop&q=80', alt: 'Mustang landscape', caption: 'Wind-carved canyons of Upper Mustang.' }, { id: 'kathmandu', src: 'https://images.unsplash.com/photo-1597239450996-ea7c1e1b1b1e?w=1200&auto=format&fit=crop&q=80', alt: 'Kathmandu valley', caption: 'Boudhanath Stupa at twilight.' }, { id: 'chitwan', src: 'https://images.unsplash.com/photo-1580137189272-c9379f8864fd?w=1200&auto=format&fit=crop&q=80', alt: 'Chitwan river', caption: 'A canoe glides through Chitwan\'s silent waterways.' }, { id: 'langtang', src: 'https://images.unsplash.com/photo-1580137189272-c9379f8864fd?w=1200&auto=format&fit=crop&q=80', alt: 'Langtang valley', caption: 'Langtang Lirung towers above rhododendron forests.' }, ]; export const circularGalleryImages: GalleryImage[] = [ { id: 'prayer-flags', src: 'https://images.unsplash.com/photo-1580137189272-c9379f8864fd?w=800&auto=format&fit=crop&q=80', alt: 'Prayer flags', caption: 'Wind carries prayers across the Himalaya.' }, { id: 'teahouse', src: 'https://images.unsplash.com/photo-1597239450996-ea7c1e1b1b1e?w=800&auto=format&fit=crop&q=80', alt: 'Mountain teahouse', caption: 'A warm hearth and steeped tea at 4,000m.' }, { id: 'rhododendron', src: 'https://images.unsplash.com/photo-1605648916367-0b1c5f5b9c9a?w=800&auto=format&fit=crop&q=80', alt: 'Rhododendron forest', caption: 'Spring sets the hills ablaze with crimson blooms.' }, { id: 'suspension-bridge', src: 'https://images.unsplash.com/photo-1585409677983-0f6c41ca9c3b?w=800&auto=format&fit=crop&q=80', alt: 'Suspension bridge', caption: 'Crossing gorges on woven steel and wood.' }, { id: 'monastery', src: 'https://images.unsplash.com/photo-1580137189272-c9379f8864fd?w=800&auto=format&fit=crop&q=80', alt: 'Mountain monastery', caption: 'Monastery bells echo across the valley.' }, { id: 'yak', src: 'https://images.unsplash.com/photo-1597239450996-ea7c1e1b1b1e?w=800&auto=format&fit=crop&q=80', alt: 'Yak caravan', caption: 'Yak caravans follow ancient trade routes.' }, { id: 'glacier', src: 'https://images.unsplash.com/photo-1605648916367-0b1c5f5b9c9a?w=800&auto=format&fit=crop&q=80', alt: 'Glacier', caption: 'Khumbu Glacier under a high-altitude sun.' }, { id: 'village', src: 'https://images.unsplash.com/photo-1585409677983-0f6c41ca9c3b?w=800&auto=format&fit=crop&q=80', alt: 'Mountain village', caption: 'Stone houses and prayer wheels in a Himalayan hamlet.' }, ];