fix: full translation parity, component consistency, and link clickability
All checks were successful
Build & Deploy / 🔍 Prepare (push) Successful in 24s
Build & Deploy / 🧪 QA (push) Successful in 1m47s
Build & Deploy / 🏗️ Build (push) Successful in 2m46s
Build & Deploy / 🚀 Deploy (push) Successful in 25s
Build & Deploy / 🧪 Post-Deploy Verification (push) Successful in 44s
Build & Deploy / 🔔 Notify (push) Successful in 1s

This commit is contained in:
2026-05-27 12:04:51 +02:00
parent fa747763b8
commit 2b79d18a93
9 changed files with 199 additions and 113 deletions

View File

@@ -3,6 +3,7 @@
import * as React from 'react';
import { motion, useScroll, useTransform } from 'framer-motion';
import { Building2, Compass, Layers, ArrowDownToLine, Wrench, Factory, Zap, MapPin, CheckCircle2 } from 'lucide-react';
import { useTranslations } from 'next-intl';
const iconMap: Record<string, React.ElementType> = {
Building2,
@@ -16,37 +17,6 @@ const iconMap: Record<string, React.ElementType> = {
CheckCircle2
};
const defaultMilestones = [
{
date: '16.12.2015',
year: '2015',
title: 'Gründung E-TIB GmbH',
desc: 'Ausführung elektrischer Infrastrukturprojekte, Kabeltiefbau und Horizontalspülbohrungen.',
iconName: 'Building2',
},
{
date: '04.02.2019',
year: '2019',
title: 'Gründung E-TIB Ingenieurgesellschaft',
desc: 'Genehmigungs- und Ausführungsplanung, komplexe Querungen sowie Netzanschlussplanung.',
iconName: 'Compass',
},
{
date: '14.11.2019',
year: '2019',
title: 'Gründung E-TIB Verwaltung GmbH',
desc: 'Zentrale Dienste, Erwerb, Vermietung, Verpachtung und Verwaltung von Immobilien und Maschinen.',
iconName: 'Layers',
},
{
date: '21.10.2025',
year: '2025',
title: 'Gründung E-TIB Bohrtechnik GmbH',
desc: 'Spezialisierung auf präzise Horizontalspülbohrungen in allen Bodenklassen.',
iconName: 'ArrowDownToLine',
},
];
interface Milestone {
date: string;
year: string;
@@ -62,10 +32,45 @@ interface CompanyTimelineProps {
}
export function CompanyTimeline({
badge = 'Unsere Geschichte',
title = 'Meilensteine der Entwicklung',
milestones = defaultMilestones
badge,
title,
milestones
}: CompanyTimelineProps) {
const t = useTranslations('CompanyTimeline');
const finalBadge = badge || t('badge');
const finalTitle = title || t('title');
const finalMilestones = milestones || [
{
date: '16.12.2015',
year: '2015',
title: t('milestones.2015.title'),
desc: t('milestones.2015.desc'),
iconName: 'Building2',
},
{
date: '04.02.2019',
year: '2019',
title: t('milestones.2019_ing.title'),
desc: t('milestones.2019_ing.desc'),
iconName: 'Compass',
},
{
date: '14.11.2019',
year: '2019',
title: t('milestones.2019_verw.title'),
desc: t('milestones.2019_verw.desc'),
iconName: 'Layers',
},
{
date: '21.10.2025',
year: '2025',
title: t('milestones.2025.title'),
desc: t('milestones.2025.desc'),
iconName: 'ArrowDownToLine',
},
];
const containerRef = React.useRef<HTMLDivElement>(null);
const { scrollYProgress } = useScroll({
target: containerRef,
@@ -84,10 +89,10 @@ export function CompanyTimeline({
<div className="text-center mb-24">
<div className="inline-flex items-center gap-2 px-3 py-1.5 rounded-full bg-white border border-neutral-200 text-neutral-dark text-xs font-bold uppercase tracking-wider mb-6 shadow-sm">
<span className="w-2 h-2 rounded-full bg-primary animate-pulse" />
{badge}
{finalBadge}
</div>
<h3 className="font-heading text-4xl md:text-5xl lg:text-6xl font-extrabold text-neutral-dark tracking-tight">
{title}
{finalTitle}
</h3>
</div>
@@ -104,7 +109,7 @@ export function CompanyTimeline({
</div>
<div className="space-y-16 md:space-y-24">
{milestones.map((milestone, i) => {
{finalMilestones.map((milestone, i) => {
const isEven = i % 2 === 0;
const Icon = iconMap[milestone.iconName] || Building2;