Technology

Advised UWS Technologie GmbH on the sale to Aalberts N.V.

Mr. Scheufen and Mr. Köppe successfully advised the shareholder on the transaction.

No items found.

Aalberts N.V. is a publicly traded technology group from the Netherlands that can look back on more than 40 years of sustainable growth. During this time, the company has gained extensive experience in the areas of internationalization and innovative technologies. With more than 16,000 employees, Aalberts is active in around 70 business and 80 service locations in over 50 countries and offers products in the fields of installation technology, materials technology, air conditioning technology, and industrial technology. In the past, Aalberts has already established various partnerships in German-speaking countries, thereby building up a deep understanding of German SMEs.

UWS Technologie GmbH has established itself in recent years as an innovation driver in the growth market of heating water treatment and, with over 90 employees, is a driving force behind Bavarian SMEs. The group's products are developed and manufactured in Insingen and make an important contribution to sustainability in energy-efficient buildings. In addition, UWS stands out for its nationwide range of maintenance and service offerings, such as heating system filling for large-scale installations.

Involved team members

Competence and character – the foundation of our team.

Philipp Köppe

Managing Partner

An entrepreneurial dealmaker with a strong client-first mindset. Combining strategic foresight, privileged investor access, and confident, results-oriented negotiation, he ensures every transaction delivers the best possible outcome for his clients.

Jannis Scheufen

Managing Partner

An analytically minded strategist with technical excellence. With precise judgment, deep technical expertise, and decisive execution, he leads complex transactions from analysis through to successful closing - always with a pragmatic focus on solutions that create real value for investors.

What is my company worth?

With our valuation tool, you receive a solid initial assessment. Our experts are available for deeper advisory support.

15+

years experience

up to 40%

better transaction results

95%

of deals above price expectations

An initial conversation brings more clarity than extensive research.

Are you looking for a partner who understands you, stands firm in negotiations, and goes the extra mile for you throughout the entire process?

Then schedule a non-binding call with the MIND executive team.

Schedule a call
Klar, dafür gibt es eine einfache Lösung in Swiper JS, oft in Verbindung mit einer kleinen JavaScript-Prüfung der Anzahl der Slides. Da du Webflow und CMS verwendest, musst du die Prüfung im Custom Code (vor dem schließenden -Tag) der Seite hinzufügen.Hier sind zwei gängige Ansätze, um die Navigationspfeile ($`.swiper-button-prev`$ und $`.swiper-button-next`$) auszublenden, wenn es nur einen Eintrag gibt:1. Swiper-Konfiguration ($`watchOverflow: true`$)Die einfachste Methode ist, die Option $watchOverflow: true$ in den Swiper-Einstellungen zu verwenden. Diese Option sorgt dafür, dass Navigations- und Paginationselemente automatisch ausgeblendet werden, wenn die Slides die Größe des Containers nicht überschreiten (was bei nur einem Slide und $slidesPerView: 1\$ der Fall ist).Dein Swiper-Initialisierungscode sollte so aussehen (passe Klassen und Optionen nach Bedarf an):JavaScriptvar mySwiper = new Swiper('.swiper-container', { // ... andere Optionen ... navigation: { nextEl: '.swiper-button-next', prevEl: '.swiper-button-prev', }, // FÜGE DIES HINZU watchOverflow: true, // ... }); 2. Manuelle Überprüfung der Slide-Anzahl (JavaScript)Falls die $watchOverflow$-Option nicht wie gewünscht funktioniert oder du mehr Kontrolle benötigst, kannst du die Anzahl der Slides im Collection List Wrapper (dein $`.swiper-wrapper`$) manuell überprüfen und die Navigations-Elemente per JavaScript verstecken:Navigations-Container identifizieren: Gib deinen Navigationspfeilen (oder deren übergeordnetem Wrapper) eine eindeutige Klasse, z.B. $cms-slider-navigation$, oder verwende die bereits existierenden Klassen $`.swiper-button-prev`$ und $`.swiper-button-next`$.Code in Webflow einfügen: Füge den folgenden Code im Tab "Before tag" (Vor dem $``$-Tag) der Seiteneinstellungen oder in den Site Settings ein:JavaScript