export interface Document { id: number; title: string; category: 'ihale' | 'teknik' | 'cevresel' | 'raporlar' | 'guvenlik'; date: string; size: string; type: 'PDF' | 'DWG' | 'XLSX' | 'DOCX'; description: string; downloadUrl?: string; featured?: boolean; } // Mock data removed - all data comes from database export const documentsData: Document[] = [];