Files
e-tib.com/lib/map-data.ts
Marc Mintel 843d61cd5d
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 23s
Build & Deploy / 🧪 QA (push) Failing after 1m8s
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 1s
feat: overhaul competence pages, unify brand colors, and polish site integrity
- Rewrote all 5 competence pages (Kabeltiefbau, Bohrtechnik, Glasfaser, Planung, Vermessung) with factual data from references
- Unified brand colors: replaced toxic neon green with brand-aligned teal (#10a379)
- Fixed ReferencesSlider injection in dynamic MDX pages
- Enhanced Footer with icon parity, improved branding placement, and unified hover effects
- Refined Header with 3D micro-animations and improved dropdown visibility
- Fixed localized tracking API (rewrites for /stats/api/send)
- Resolved ReferenceErrors in InteractiveGermanyMap and Header state management
- Cleaned reference titles and truncated metadata in lists
2026-05-15 21:07:25 +02:00

87 lines
1.8 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 (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',
}
];