Files
e-tib.com/lib/map-data.ts
Marc Mintel 84f035a9fd
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 37s
Build & Deploy / 🧪 QA (push) Failing after 1m31s
Build & Deploy / 🏗️ Build (push) Has been skipped
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 4s
chore: optimize reference gallery, add typography plugin, fix SEO and map animations
2026-05-13 22:14:47 +02:00

87 lines
1.9 KiB
TypeScript

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 (LWL-Trasse)',
type: 'project',
x: 81,
y: 42,
description: '28km LWL-Trasse inkl. Spülbohrung',
href: '/referenzen/spreewald',
},
{
id: 'bomlitz',
name: 'Bomlitz (110kV-Trasse)',
type: 'project',
x: 43,
y: 30,
description: 'Neuverlegung einer 110kV Hochspannungstrasse',
href: '/referenzen/bomlitz',
},
{
id: 'forst',
name: 'Forst (Verteilerknoten)',
type: 'project',
x: 87,
y: 52,
description: 'Ausbau lokaler Glasfasernetze',
href: '/referenzen/forst',
},
{
id: 'eisenhuettenstadt',
name: 'Eisenhüttenstadt (Industriegebiet)',
type: 'project',
x: 86,
y: 44,
description: 'Erschließung Industriegebiet Nord',
href: '/referenzen/eisenhuettenstadt',
},
{
id: 'goerne',
name: 'Görne (Breitbandausbau)',
type: 'project',
x: 65,
y: 35,
description: 'Glasfaser-Rückgrat für 3 Gemeinden',
href: '/referenzen/goerne',
},
{
id: 'boerde',
name: 'Börde (Windpark-Anschluss)',
type: 'project',
x: 55,
y: 38,
description: 'Kabeltrasse für erneuerbare Energien',
href: '/referenzen/boerde',
}
];