export interface Project { id: number; slug: string; year: string; location: string; title: string; image: string; category?: string; } export const projects: Project[] = [ { id: 1, slug: 'jdhm-genel-merkez', year: '2018', location: 'SAINT-AUGUSTIN-DE-DESMAURES', title: 'JDHM – GENEL MERKEZ', image: 'https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop', category: 'Ticari' }, { id: 2, slug: 'sale', year: '2019', location: 'MONTREAL, QC', title: 'ŞALE', image: 'https://images.unsplash.com/photo-1518780664697-55e3ad937233?q=80&w=2070&auto=format&fit=crop', category: 'Konut' }, { id: 3, slug: 'modern-muze', year: '2020', location: 'QUEBEC CITY, QC', title: 'MODERN MÜZE', image: 'https://images.unsplash.com/photo-1511818966892-d7d671e672a2?q=80&w=2070&auto=format&fit=crop', category: 'Kültürel' }, { id: 4, slug: 'orman-evi', year: '2022', location: 'VANCOUVER, BC', title: 'ORMAN EVİ', image: 'https://images.unsplash.com/photo-1500382017468-9049fed747ef?q=80&w=2070&auto=format&fit=crop', category: 'Konut' }, { id: 5, slug: 'kocina', year: '2023', location: 'SAINTE-FOY, QC', title: 'KOCINA', image: 'https://images.unsplash.com/photo-1487958449943-2429e8be8625?q=80&w=2070&auto=format&fit=crop', category: 'Ticari' }, { id: 6, slug: 'yamac-evi', year: '2022', location: 'MONT-TREMBLANT, QC', title: 'YAMAÇ EVİ', image: 'https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2070&auto=format&fit=crop', category: 'Konut' }, { id: 7, slug: 'makusham-studyo', year: '2021', location: 'LÉVIS, QC', title: 'MAKUSHAM STÜDYO', image: 'https://images.unsplash.com/photo-1431540015161-0bf868a2d407?q=80&w=2070&auto=format&fit=crop', category: 'Kültürel' }, { id: 8, slug: 'must-societe', year: '2023', location: 'BROSSARD, QC', title: 'MUST SOCIÉTÉ', image: 'https://images.unsplash.com/photo-1504384308090-c894fdcc538d?q=80&w=2070&auto=format&fit=crop', category: 'Ticari' }, ];