export interface Location { id: string; name: string; type: 'hq' | 'branch' | 'project'; x: number; y: number; description: string; details?: string[]; href?: string; featuredImage?: string; } export const defaultLocations: Location[] = [ { id: 'guben', name: 'Guben (Hauptsitz)', type: 'hq', x: 85, y: 48, description: 'E-TIB GmbH Holding & Bohrtechnik GmbH', details: ['Zentrale Steuerung', 'Kabelleitungstiefbau', 'Maschinenpark'], }, { id: 'buelstedt', name: 'Bülstedt (Ingenieurgesellschaft)', type: 'branch', x: 37, y: 25, description: 'E-TIB Ingenieurgesellschaft mbH', details: ['Planung & Projektierung', 'Vermessung', 'Dokumentation'], }, { id: 'spreewald', name: 'Spreewald (FTTC)', type: 'project', x: 81, y: 42, description: 'Breitbandausbau FTTC', href: '/referenzen/spreewald', }, { id: 'bomlitz', name: 'Bomlitz (FTTH)', type: 'project', x: 43, y: 30, description: '88km Leitungstrasse (Tiefbau/HDD)', href: '/referenzen/bomlitz', }, { id: 'forst', name: 'Forst (Kabeltrasse)', type: 'project', x: 87, y: 52, description: 'Neubau MS-Kabeltrasse', href: '/referenzen/forst', }, { id: 'eisenhuettenstadt', name: 'Eisenhüttenstadt (Kabel)', type: 'project', x: 86, y: 44, description: 'Kabelverbindung U30 - T10', href: '/referenzen/eisenhuettenstadt', }, { id: 'goerne', name: 'Görne (PV-Anlage)', type: 'project', x: 65, y: 35, description: 'Einspeisung PV-Anlage (MS-Kabel)', href: '/referenzen/goerne', }, { id: 'boerde', name: 'Börde (FTTH-Ausbau)', type: 'project', x: 55, y: 38, description: '109km Leitungstrasse für Breitband', href: '/referenzen/boerde', } ];