'use client'; import React, { Suspense } from 'react'; import { Section, Container } from '@/components/ui'; import { ContactForm } from '@/components/forms/ContactForm'; import dynamic from 'next/dynamic'; const ContactMap = dynamic(() => import('@/components/ContactMap'), { ssr: false, loading: () =>
, }); export interface ContactSectionProps { showForm?: boolean; showMap?: boolean; } export const ContactSection: React.FC = (props) => { const { showForm, showMap } = props; return (

Direktkontakt

Wir sind für Sie da.

Haben Sie Fragen zu unseren Leistungen oder möchten Sie ein konkretes Projekt besprechen? Rufen Sie uns an oder schreiben Sie uns eine E-Mail.

Standort

Gewerbestraße 22
03172 Guben
Deutschland

{showForm && (
} >
)}
{showMap && (
} >
)}
); };