Files
gulermak_metro/data/media.ts
2025-10-22 16:46:41 +03:00

116 lines
3.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
export interface MediaItem {
id: number;
type: 'video' | 'photo';
title: string;
thumbnail: string;
videoUrl?: string;
date: string;
duration?: string;
description: string;
category?: string;
featured?: boolean;
}
export const mediaData: MediaItem[] = [
{
id: 1,
type: 'video',
title: 'A2 Metro Hattı Genel Tanıtım',
thumbnail: 'https://images.pexels.com/photos/17152223/pexels-photo-17152223.jpeg',
videoUrl: 'https://www.youtube.com/embed/b9q88QDEcKg',
date: '20 Ekim 2025',
duration: '5:32',
description: 'A2 Metro Hattı projesinin genel tanıtımı ve istasyonların detayları',
category: 'Tanıtım',
featured: true
},
{
id: 2,
type: 'photo',
title: 'Dikimevi İstasyonu İnşaat Çalışmaları',
thumbnail: 'https://images.pexels.com/photos/17302615/pexels-photo-17302615.jpeg',
date: '18 Ekim 2025',
description: 'Dikimevi metro istasyonunda devam eden kazı ve inşaat çalışmaları',
category: 'İnşaat',
featured: true
},
{
id: 3,
type: 'photo',
title: 'Tuzluçayır İstasyonu Temel Atma',
thumbnail: 'https://images.pexels.com/photos/33950678/pexels-photo-33950678.jpeg',
date: '15 Ekim 2025',
description: 'Tuzluçayır istasyonunun temel atma töreni anları',
category: 'Etkinlik'
},
{
id: 4,
type: 'video',
title: 'Metro İnşaatı İlerleme Raporu',
thumbnail: 'https://images.pexels.com/photos/253647/pexels-photo-253647.jpeg',
videoUrl: 'https://www.youtube.com/embed/b9q88QDEcKg',
date: '12 Ekim 2025',
duration: '8:15',
description: 'Ekim ayı metro inşaatı ilerleme raporu ve gelecek hedefler',
category: 'Rapor'
},
{
id: 5,
type: 'photo',
title: 'Modern İstasyon Tasarımları',
thumbnail: 'https://images.pexels.com/photos/17152223/pexels-photo-17152223.jpeg',
date: '10 Ekim 2025',
description: 'Yeni nesil metro istasyonlarının modern iç mekan tasarımları',
category: 'Tasarım'
},
{
id: 6,
type: 'video',
title: 'Çevre Dostu Metro Projesi',
thumbnail: 'https://images.pexels.com/photos/17302615/pexels-photo-17302615.jpeg',
videoUrl: 'https://www.youtube.com/embed/b9q88QDEcKg',
date: '8 Ekim 2025',
duration: '6:45',
description: 'Metro projesinde kullanılan çevre dostu teknolojiler ve sürdürülebilir yaklaşımlar',
category: 'Çevre'
},
{
id: 7,
type: 'photo',
title: 'İşçi Güvenliği Eğitimi',
thumbnail: 'https://images.pexels.com/photos/33950678/pexels-photo-33950678.jpeg',
date: '5 Ekim 2025',
description: 'İnşaat sahalarında iş güvenliği eğitimleri',
category: 'Güvenlik'
},
{
id: 8,
type: 'photo',
title: 'Ray Döşeme Çalışmaları',
thumbnail: 'https://images.pexels.com/photos/253647/pexels-photo-253647.jpeg',
date: '1 Ekim 2025',
description: 'Metro hattında ray döşeme işlemlerinin başlaması',
category: 'İnşaat'
},
{
id: 9,
type: 'video',
title: 'TBM Makinesi Tünel Kazısı',
thumbnail: 'https://images.pexels.com/photos/17152223/pexels-photo-17152223.jpeg',
videoUrl: 'https://www.youtube.com/embed/b9q88QDEcKg',
date: '28 Eylül 2025',
duration: '4:20',
description: 'Dev tünel açma makinesinin çalışma anları',
category: 'Teknoloji'
},
{
id: 10,
type: 'photo',
title: 'Gece Vardiyası Çalışmaları',
thumbnail: 'https://images.pexels.com/photos/17302615/pexels-photo-17302615.jpeg',
date: '25 Eylül 2025',
description: 'İnşaat sahalarında 7/24 devam eden çalışmalar',
category: 'İnşaat'
}
];