From 351c27f7d41739b471d0d727bd79d8a8a28c5d4c Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Wed, 13 May 2026 11:48:34 +0200 Subject: [PATCH] fix(ui): adjust grid breakpoints on map and pointer events on footer --- components/blocks/InteractiveGermanyMap.tsx | 8 ++++---- components/layout/Footer.tsx | 10 +++++----- next-env.d.ts | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/components/blocks/InteractiveGermanyMap.tsx b/components/blocks/InteractiveGermanyMap.tsx index e8163f15b..762a4acd4 100644 --- a/components/blocks/InteractiveGermanyMap.tsx +++ b/components/blocks/InteractiveGermanyMap.tsx @@ -83,16 +83,16 @@ export function InteractiveGermanyMap() {
-
+
{/* Content Left */} -
+
Einsatzgebiete
-

+

Deutschlandweit
für Sie im Einsatz.

@@ -124,7 +124,7 @@ export function InteractiveGermanyMap() {
{/* Map Right */} -
+
{/* Map Container - Enforce strict aspect ratio matching the SVG (1024x1024) */}
{/* Map SVG */} diff --git a/components/layout/Footer.tsx b/components/layout/Footer.tsx index f020c51f8..6bea5a416 100644 --- a/components/layout/Footer.tsx +++ b/components/layout/Footer.tsx @@ -32,7 +32,7 @@ export function Footer({ companyInfo }: FooterProps) {
- + E-TIB Gruppe
- +

E-Mail

{companyInfo.contactEmail}

- +

{locale === 'de' ? 'Telefon' : 'Phone'}

{companyInfo.contactPhone}

@@ -91,7 +91,7 @@ export function Footer({ companyInfo }: FooterProps) { { label: locale === 'de' ? 'Kontakt' : 'Contact', href: `/${locale}/${locale === 'de' ? 'kontakt' : 'contact'}` }, ].map((link) => (
  • - + {link.label} @@ -114,7 +114,7 @@ export function Footer({ companyInfo }: FooterProps) { { label: locale === 'de' ? 'AGB' : 'Terms', href: `/${locale}/${locale === 'de' ? 'agb' : 'terms'}` }, ].map((link) => (
  • - + {link.label} diff --git a/next-env.d.ts b/next-env.d.ts index c4b7818fb..9edff1c7c 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -1,6 +1,6 @@ /// /// -import "./.next/dev/types/routes.d.ts"; +import "./.next/types/routes.d.ts"; // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.