92 lines
2.4 KiB
TypeScript
92 lines
2.4 KiB
TypeScript
export interface Project {
|
||
id: number;
|
||
year: string;
|
||
location: string;
|
||
title: string;
|
||
image: string;
|
||
category?: string;
|
||
}
|
||
|
||
export const projects: Project[] = [
|
||
{
|
||
id: 1,
|
||
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,
|
||
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,
|
||
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,
|
||
year: '2021',
|
||
location: 'TORONTO, ON',
|
||
title: 'ŞEHİR KULESİ',
|
||
image: 'https://images.unsplash.com/photo-1449156001533-cb39414bb589?q=80&w=2070&auto=format&fit=crop',
|
||
category: 'Konut'
|
||
},
|
||
{
|
||
id: 5,
|
||
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: 6,
|
||
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: 7,
|
||
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: 8,
|
||
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: 9,
|
||
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'
|
||
},
|
||
{
|
||
id: 10,
|
||
year: '2022',
|
||
location: 'RIMOUSKI, QC',
|
||
title: 'GÖL KENARI KULÜBESİ',
|
||
image: 'https://images.unsplash.com/photo-1449156001533-cb39414bb589?q=80&w=2070&auto=format&fit=crop',
|
||
category: 'Konut'
|
||
}
|
||
];
|