+ )
+}
diff --git a/src/app/de/contact/layout.tsx b/src/app/de/contact/layout.tsx
new file mode 100644
index 0000000..2e9217d
--- /dev/null
+++ b/src/app/de/contact/layout.tsx
@@ -0,0 +1,31 @@
+import type { Metadata } from 'next'
+
+export const metadata: Metadata = {
+ title: 'Kontakt - Open Elements',
+ description: 'Kontaktieren Sie Open Elements. Vereinbaren Sie einen Termin, senden Sie uns eine E-Mail oder rufen Sie uns an.',
+ keywords: ['Kontakt', 'Open Elements', 'Termin vereinbaren'],
+ openGraph: {
+ type: 'website',
+ url: 'https://open-elements.com/de/contact',
+ title: 'Kontakt - Open Elements',
+ description: 'Kontaktieren Sie Open Elements. Vereinbaren Sie einen Termin, senden Sie uns eine E-Mail oder rufen Sie uns an.',
+ siteName: 'Open Elements',
+ images: [
+ {
+ url: '/open-graph/open-elements.png',
+ width: 1200,
+ height: 630,
+ alt: 'OpenElements Logo',
+ },
+ ],
+ locale: 'de_DE',
+ },
+}
+
+export default function DeContactLayout({
+ children,
+}: {
+ children: React.ReactNode
+}) {
+ return <>{children}>
+}
diff --git a/src/app/de/contact/page.tsx b/src/app/de/contact/page.tsx
new file mode 100644
index 0000000..c338e28
--- /dev/null
+++ b/src/app/de/contact/page.tsx
@@ -0,0 +1,118 @@
+import Image from 'next/image'
+import CalendlyButton from '@/components/contact/CalendlyButton'
+import ContactInfo from '@/components/contact/ContactInfo'
+
+export default function DeContactPage() {
+ return (
+
+
+
+
+
+
+
+
+
+ Kontakt
+
+
+
+
+
+
+
+
+ Der einfachste Weg, um mit uns in Kontakt zu treten, besteht darin, einen kostenlosen 30-minütigen Slot in unserem offenen Kalender zu buchen. Auf diese Weise können wir eine Diskussion beginnen und über Ihre Anliegen, Interessen oder Probleme bezüglich unserer Schwerpunktthemen wie Open Source und Java sprechen.
+
+
+
+
+
+
+
+
+
+
+
+
Zusätzlich dazu können Sie uns eine E-Mail senden an:
+ Open Elements GmbH
+ Gerhart-Hauptmann-Str. 49B
+ 51379 Leverkusen
+ Germany
+
+
+
+
+
+
+
+
+
+
+ )
+}
diff --git a/src/app/de/layout.tsx b/src/app/de/layout.tsx
new file mode 100644
index 0000000..b709457
--- /dev/null
+++ b/src/app/de/layout.tsx
@@ -0,0 +1,54 @@
+import type { Metadata } from 'next'
+import { Montserrat } from 'next/font/google'
+import Navbar from '@/components/Navbar'
+import Footer from '@/components/Footer'
+
+const montserrat = Montserrat({
+ subsets: ['latin'],
+ weight: ['300', '400', '500', '600', '700', '800', '900'],
+ variable: '--font-montserrat',
+ display: 'swap',
+})
+
+export const metadata: Metadata = {
+ title: 'Open Elements - Open Source, aber richtig',
+ description: 'Open Source, aber richtig - Open Elements ist ein modernes Unternehmen mit einem Fokus auf Open Source und Java',
+ keywords: ['open source', 'Java', 'OSS', 'open source Support', 'Java Support'],
+ openGraph: {
+ type: 'website',
+ url: 'https://open-elements.com/de',
+ title: 'Open Elements - Open Source, aber richtig',
+ description: 'Open Source, aber richtig - Open Elements ist ein modernes Unternehmen mit einem Fokus auf Open Source und Java',
+ siteName: 'Open Elements',
+ images: [
+ {
+ url: '/open-graph/open-elements.png',
+ width: 1200,
+ height: 630,
+ alt: 'OpenElements Logo',
+ },
+ ],
+ locale: 'de_DE',
+ },
+}
+
+export default function DeLayout({
+ children,
+}: {
+ children: React.ReactNode
+}) {
+ return (
+
+
+
+
+
+
+
+ {children}
+
+
+
+
+ )
+}
diff --git a/src/app/de/page.tsx b/src/app/de/page.tsx
new file mode 100644
index 0000000..eb2c733
--- /dev/null
+++ b/src/app/de/page.tsx
@@ -0,0 +1,19 @@
+import HeroSection from '@/components/home/HeroSection'
+import OpenKnowledgeSection from '@/components/home/OpenKnowledgeSection'
+import OpenEventsSection from '@/components/home/OpenEventsSection'
+import OpenSourceSection from '@/components/home/OpenSourceSection'
+import OpenDoorsSection from '@/components/home/OpenDoorsSection'
+import OpenOfficeSection from '@/components/home/OpenOfficeSection'
+
+export default function DeHome() {
+ return (
+ <>
+
+
+
+
+
+
+ >
+ )
+}
diff --git a/src/app/de/support-care-maven/layout.tsx b/src/app/de/support-care-maven/layout.tsx
new file mode 100644
index 0000000..1c1ad58
--- /dev/null
+++ b/src/app/de/support-care-maven/layout.tsx
@@ -0,0 +1,31 @@
+import type { Metadata } from 'next'
+
+export const metadata: Metadata = {
+ title: 'Support & Care - Open Elements',
+ description: 'Support & Care ist ein Programm zur nachhaltigen Weiterentwicklung, Stabilisierung und Unterstützung von Open Source Software (OSS).',
+ keywords: ['Open Source', 'Support', 'Care', 'Java', 'Eclipse Temurin', 'Apache Maven'],
+ openGraph: {
+ type: 'website',
+ url: 'https://open-elements.com/de/support-care',
+ title: 'Support & Care - Open Elements',
+ description: 'Support & Care ist ein Programm zur nachhaltigen Weiterentwicklung, Stabilisierung und Unterstützung von Open Source Software (OSS).',
+ siteName: 'Open Elements',
+ images: [
+ {
+ url: '/open-graph/open-elements.png',
+ width: 1200,
+ height: 630,
+ alt: 'OpenElements Logo',
+ },
+ ],
+ locale: 'de_DE',
+ },
+}
+
+export default function DeSupportCareLayout({
+ children,
+}: {
+ children: React.ReactNode
+}) {
+ return <>{children}>
+}
diff --git a/src/app/de/support-care-maven/page.tsx b/src/app/de/support-care-maven/page.tsx
new file mode 100644
index 0000000..6bc4d9c
--- /dev/null
+++ b/src/app/de/support-care-maven/page.tsx
@@ -0,0 +1,151 @@
+import Image from 'next/image'
+import Link from 'next/link'
+
+export default function DeSupportCareMavenPage() {
+ return (
+
+ {/* Hero Background */}
+
+
+
+
+
+
+ {/* Logo Section */}
+
+
+
+
+ {/* Introduction Text */}
+
+
+ Open Elements hat mit seinem Programm Support & Care für Apache Maven™ eine wichtige Initiative gestartet, die dazu beiträgt,
+ ein zentrales Werkzeug des Java-Ökosystems abzusichern. Mit Förderung der Sovereign Tech Agency
+ wird erstmals eine nachhaltige Unterstützung für Apache Maven ermöglicht – eines der weltweit am häufigsten genutzten Open-Source-Projekte.
+
+
+ Wir bieten nun Unternehmen und Organisationen die Möglichkeit, sich an diesem wichtigen Vorhaben zu beteiligen.
+ Durch den Abschluss eines Support & Care-Abonnements tragen Sie dazu bei, die langfristige Stabilität und Weiterentwicklung von Apache Maven zu sichern.
+ Ihre Unterstützung hilft dabei, kritische Aufgaben wie Sicherheitsupdates, Fehlerbehebungen und die Entwicklung neuer Funktionen zu finanzieren.
+
+
+ Neben der Unterstützung der Community-getriebenen Entwicklung ermöglicht Ihnen ein Support & Care-Abonnement den direkten Zugang zu unseren Experten und Maintainern,
+ um Fehlerbehebungen zu priorisieren oder Sie bei anderen Themen rund um Apache Maven™ zu unterstützen.
+
+
+
+
+
+ {/* Subscription Packages */}
+
+
+
+ Unser Abonnement-Modell für Apache Maven™
+
+
+ Wir bieten drei verschiedene Pakete, die auf die Bedürfnisse verschiedener Nutzergruppen zugeschnitten sind.
+ Gerne helfen wir Ihnen bei der Ermittlung, welches Paket am besten zu Ihren Anforderungen passt.
+
+
+
+
+ {/* STA Support Section */}
+
+
+
+ Förderung durch die Sovereign Tech Agency
+
+
+
+ Die Sovereign Tech Agency (STA) ist ein Förderprogramm des Bundesministeriums für Wirtschaft und Klimaschutz,
+ das sich der nachhaltigen Unterstützung von Open-Source-Software widmet. Das Programm zielt darauf ab, kritische digitale Infrastrukturen
+ langfristig zu sichern und die Resilienz des europäischen Technologie-Ökosystems zu stärken. Von der STA geförderte Projekte müssen von
+ erheblicher Bedeutung für Wirtschaft und Gesellschaft sein und nachhaltigen Entwicklungspraktiken folgen.
+
+
+ Seit 2024 investiert die STA in das Projekt Support & Care für Apache Maven™ und ermöglicht so eine nachhaltige Kostenteilung zwischen
+ öffentlicher Förderung und kommerziellen Beiträgen. Die Investition der STA legt den Grundstein für eine nachhaltige Zukunft des Projekts
+ und des gesamten Java-Ökosystems. Allerdings ist eine breite Unterstützung aus der Community und Industrie unerlässlich, um Apache Maven
+ langfristig abzusichern.
+
+
+
+
+
+ {/* Model Project Section */}
+
+
+
+ Ein Modellprojekt für Open Source
+
+
+
+ Mit Support & Care für Apache Maven™ unternimmt Open Elements einen starken Schritt in Richtung nachhaltiger Unterstützung von
+ Open-Source-Projekten. Dieses Programm dient als Pilotprojekt innerhalb der Support & Care-Initiative, die darauf abzielt, in
+ weitere kritische Open-Source-Komponenten zu investieren.
+
+
+ Das Konzept kombiniert öffentliche Förderung, kommerzielle Unterstützung, transparente Finanzverwaltung und aktive Community-Beteiligung.
+ Es zeigt, wie essentielle Open-Source-Projekte zukunftssicher gemacht werden können, während Innovationen gefördert werden –
+ ein Modell, das ähnliche Initiativen im gesamten Open-Source-Ökosystem inspirieren kann.
+
+
+
+ {/* Care Tree Illustration */}
+
+
+
+
+
+
+ {/* Contact CTA */}
+
+
+
+
+ Kontaktieren Sie uns
+
+
+
+
+ {/* Decorative Circles at Bottom */}
+
+
+
+
+
+ )
+}
diff --git a/src/app/de/support-care/layout.tsx b/src/app/de/support-care/layout.tsx
new file mode 100644
index 0000000..453a012
--- /dev/null
+++ b/src/app/de/support-care/layout.tsx
@@ -0,0 +1,14 @@
+import { Metadata } from 'next'
+
+export const metadata: Metadata = {
+ title: 'Support & Care | Open Elements',
+ description: 'Support & Care ist ein Programm zur nachhaltigen Weiterentwicklung, Stabilisierung und Unterstützung von Open Source Software (OSS). Wir bieten professionelle Unterstützung für Apache Maven und Eclipse Temurin.',
+}
+
+export default function DeSupportCareLayout({
+ children,
+}: {
+ children: React.ReactNode
+}) {
+ return children
+}
diff --git a/src/app/de/support-care/page.tsx b/src/app/de/support-care/page.tsx
new file mode 100644
index 0000000..8cf7790
--- /dev/null
+++ b/src/app/de/support-care/page.tsx
@@ -0,0 +1,150 @@
+import Image from 'next/image'
+import Link from 'next/link'
+
+const supportOfferings = [
+ {
+ title: 'Support & Care für Apache Maven™',
+ text: 'Support & Care für Apache Maven™ stärkt die Zukunft des Java-Ökosystems durch nachhaltige Finanzierung und transparente Entwicklung. Sichern Sie die langfristige Stabilität und Weiterentwicklung von Apache Maven.',
+ logo: '/illustrations/support-care-logos/support-care-maven-logo.svg',
+ link: '/de/support-care-maven',
+ },
+ {
+ title: 'Eclipse Temurin Support & Care',
+ text: 'Professionelle Unterstützung für Eclipse Temurin, die am weitesten verbreitete Java-Laufzeitumgebung mit über 20 Millionen Downloads pro Monat. Sichern Sie die langfristige Funktionalität Ihrer Java-Anwendungen.',
+ logo: '/illustrations/support-care-logos/support-care-temurin-logo.svg',
+ link: '/de/support-care-temurin',
+ },
+]
+
+export default function DeSupportCarePage() {
+ return (
+
+
+
+
+
+
Support & Care
+
+
+
+
+ Nachhaltige Unterstützung für Open Source Software
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Support & Care ist ein Programm zur nachhaltigen Weiterentwicklung, Stabilisierung und Unterstützung von Open Source Software (OSS).
+ Open Elements arbeitet sowohl mit der Industrie als auch mit der Open-Source-Community zusammen, um die Qualität,
+ Unabhängigkeit und Entwicklung kritischer Open-Source-Projekte und -Komponenten sicherzustellen.
+
+
+ Mit Support & Care bietet Open Elements eine Lösung für kritische Projekte, damit die Produkte bedenkenlos in professionellen Umgebungen eingesetzt werden können. Unsere Open-Source-Strategie zielt darauf ab, die Ausrichtung der Projekte durch finanzielle Unterstützung und aktive
+ Zusammenarbeit zu verbessern und Unterfinanzierung, schlechte Wartung und Sicherheit dieser kritischen OSS zu verhindern.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Durch Support & Care bieten wir umfassende Dienstleistungen, um die Leistung und Sicherheit Ihrer Anwendungen zu gewährleisten.
+ Unsere Dienstleistungen gehen über die klassische Fehlerbehebung hinaus und fördern die nachhaltige Verbesserung Ihrer Infrastruktur.
+
+ )
+}
diff --git a/src/app/support-care-maven/layout.tsx b/src/app/support-care-maven/layout.tsx
new file mode 100644
index 0000000..c849ad3
--- /dev/null
+++ b/src/app/support-care-maven/layout.tsx
@@ -0,0 +1,31 @@
+import type { Metadata } from 'next'
+
+export const metadata: Metadata = {
+ title: 'Support & Care - Open Elements',
+ description: 'Support & Care is a program for the sustainable further development, stabilization and support of open source software (OSS).',
+ keywords: ['Open Source', 'Support', 'Care', 'Java', 'Eclipse Temurin', 'Apache Maven'],
+ openGraph: {
+ type: 'website',
+ url: 'https://open-elements.com/support-care',
+ title: 'Support & Care - Open Elements',
+ description: 'Support & Care is a program for the sustainable further development, stabilization and support of open source software (OSS).',
+ siteName: 'Open Elements',
+ images: [
+ {
+ url: '/open-graph/open-elements.png',
+ width: 1200,
+ height: 630,
+ alt: 'OpenElements Logo',
+ },
+ ],
+ locale: 'en_US',
+ },
+}
+
+export default function SupportCareLayout({
+ children,
+}: {
+ children: React.ReactNode
+}) {
+ return <>{children}>
+}
diff --git a/src/app/support-care-maven/page.tsx b/src/app/support-care-maven/page.tsx
new file mode 100644
index 0000000..7b1c47e
--- /dev/null
+++ b/src/app/support-care-maven/page.tsx
@@ -0,0 +1,149 @@
+import Image from 'next/image'
+import Link from 'next/link'
+
+export default function SupportCareMavenPage() {
+ return (
+
+ {/* Hero Background */}
+
+
+
+
+
+
+ {/* Logo Section */}
+
+
+
+
+ {/* Introduction Text */}
+
+
+ Open Elements has launched a major initiative with its program Support & Care for Apache Maven™, helping to secure a central tool of the Java ecosystem.
+ With funding from the Sovereign Tech Agency,
+ sustainable support for Apache Maven is enabled for the first time—one of the world's most widely used open-source projects.
+
+
+ We now offer companies and organizations the opportunity to participate in this important undertaking.
+ By subscribing to a Support & Care subscription, you contribute to securing the long-term stability and continued development of Apache Maven.
+ Your support helps finance critical tasks such as security updates, bug fixes, and the development of new features.
+
+
+ In addition to supporting community-driven development, a Support & Care subscription allows you to directly access our experts and maintainers
+ to prioritize bug fixes or assist you with other topics related to Apache Maven™.
+
+
+
+
+
+ {/* Subscription Packages */}
+
+
+
+ Our Subscription Model for Apache Maven™
+
+
+ We offer three different packages tailored to the needs of various user groups.
+ We are happy to help you determine which package best suits your requirements.
+
+
+
+
+ {/* STA Support Section */}
+
+
+
+ Support from the Sovereign Tech Agency
+
+
+
+ The Sovereign Tech Agency (STA) is a funding program of the German Federal Ministry for Economic Affairs and Climate Action
+ dedicated to the sustainable support of open-source software. The program aims to secure critical digital infrastructures in the long term
+ and strengthen the resilience of the European technology ecosystem. Projects funded by the STA must be of significant importance to the economy
+ and society while following sustainable development practices.
+
+
+ Since 2024, the STA has been investing in the Support & Care for Apache Maven™ project, enabling sustainable cost-sharing between public funding
+ and commercial contributions. The STA's investment lays the foundation for a sustainable future of the project and the entire Java ecosystem.
+ However, broad support from the community and industry is essential to secure Apache Maven in the long term.
+
+
+
+
+
+ {/* Model Project Section */}
+
+
+
+ A Model Project for Open Source
+
+
+
+ With Support & Care for Apache Maven™, Open Elements is taking a strong step toward sustainable support for open-source projects.
+ This program serves as a pilot within the Support & Care initiative, which aims to invest in additional critical open-source components.
+
+
+ The concept combines public funding, commercial support, transparent financial management, and active community involvement.
+ It demonstrates how essential open-source projects can be made future-proof while fostering innovation — a model that can inspire
+ similar initiatives across the open-source ecosystem.
+
+
+
+ {/* Care Tree Illustration */}
+
+
+
+
+
+
+ {/* Contact CTA */}
+
+
+
+
+ Contact us
+
+
+
+
+ {/* Decorative Circles at Bottom */}
+
+
+
+
+
+ )
+}
diff --git a/src/app/support-care/layout.tsx b/src/app/support-care/layout.tsx
new file mode 100644
index 0000000..2799e80
--- /dev/null
+++ b/src/app/support-care/layout.tsx
@@ -0,0 +1,14 @@
+import { Metadata } from 'next'
+
+export const metadata: Metadata = {
+ title: 'Support & Care | Open Elements',
+ description: 'Support & Care is a program for the sustainable further development, stabilization and support of open source software (OSS). We offer professional support for Apache Maven and Eclipse Temurin.',
+}
+
+export default function SupportCareLayout({
+ children,
+}: {
+ children: React.ReactNode
+}) {
+ return children
+}
diff --git a/src/app/support-care/page.tsx b/src/app/support-care/page.tsx
new file mode 100644
index 0000000..26dad99
--- /dev/null
+++ b/src/app/support-care/page.tsx
@@ -0,0 +1,151 @@
+import Image from 'next/image'
+import Link from 'next/link'
+
+const supportOfferings = [
+ {
+ title: 'Support & Care for Apache Maven™',
+ text: 'Support & Care for Apache Maven™ strengthens the future of the Java ecosystem through sustainable funding and transparent development. Secure the long-term stability and continued development of Apache Maven.',
+ logo: '/illustrations/support-care-logos/support-care-maven-logo.svg',
+ link: '/support-care-maven',
+ },
+ {
+ title: 'Eclipse Temurin Support & Care',
+ text: 'Professional support for Eclipse Temurin, the most widely used Java runtime environment with over 20 million downloads per month. Ensure the long-term functionality of your Java applications.',
+ logo: '/illustrations/support-care-logos/support-care-temurin-logo.svg',
+ link: '/support-care-temurin',
+ },
+]
+
+export default function SupportCarePage() {
+ return (
+
+
+
+
+
+
Support & Care
+
+
+
+
+ Sustainable support for open source software
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Support & Care is a program for the sustainable further development, stabilization and support of open source software (OSS).
+ Open Elements works with both the industry and the open source community to ensure the quality,
+ independence and development of critical open source projects and components.
+
+
+ With Support & Care, Open Elements offers a solution for critical projects so that the products can be
+ used without hesitation in a professional environment. Our open source strategy aims to improve the direction of the projects through financial support and active
+ collaboration and to prevent underfunding, poor maintenance and security of this critical OSS.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Through Support & Care, we provide comprehensive services to ensure the performance and security of your applications.
+ Our services go beyond classic troubleshooting and promote the sustainable improvement of your infrastructure.
+
+
+
+
+
+
+
+
+
+ Contact us
+
+
+
+
+
+
+ Our Support & Care Offerings
+
+
+ {supportOfferings.map((offering, index) => (
+
+
+
+
+
+
+
+
{offering.title}
+
{offering.text}
+
+ Learn more →
+
+
+
+
+
+ ))}
+
+
+
+ )
+}
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx
new file mode 100644
index 0000000..2ac8152
--- /dev/null
+++ b/src/components/Footer.tsx
@@ -0,0 +1,155 @@
+import Link from 'next/link'
+import Image from 'next/image'
+import mainMenu from '@/data/mainMenu.json'
+import social from '@/data/social.json'
+
+export default function Footer() {
+ return (
+
+ )
+}
diff --git a/src/components/contact/CalendlyButton.tsx b/src/components/contact/CalendlyButton.tsx
new file mode 100644
index 0000000..cab1eb9
--- /dev/null
+++ b/src/components/contact/CalendlyButton.tsx
@@ -0,0 +1,35 @@
+'use client'
+
+import Image from 'next/image'
+
+export default function CalendlyButton() {
+ const handleClick = () => {
+ // This would integrate with Cal.com or Calendly
+ // For now, opening the cal.com link
+ window.open('https://cal.com/open-elements/15min', '_blank')
+ }
+
+ return (
+
+
+
+ The easiest way to get in touch with us is by booking a free 30 min slot in our open
+ calendar. By doing so we can start a discussion and talk about your concerns, interest or
+ problems regarding any of our focused topics like Open Source and Java.
+
+
+
+
+ )
+}
diff --git a/src/components/contact/ContactInfo.tsx b/src/components/contact/ContactInfo.tsx
new file mode 100644
index 0000000..8e27858
--- /dev/null
+++ b/src/components/contact/ContactInfo.tsx
@@ -0,0 +1,66 @@
+import Image from 'next/image'
+
+export default function ContactInfo() {
+ return (
+
+ Open Elements GmbH
+ Gerhart-Hauptmann-Str. 49B
+ 51379 Leverkusen
+ Germany
+
+
+
+
+ )
+}
diff --git a/src/components/home/HeroSection.tsx b/src/components/home/HeroSection.tsx
new file mode 100644
index 0000000..aa50ec3
--- /dev/null
+++ b/src/components/home/HeroSection.tsx
@@ -0,0 +1,166 @@
+import Image from 'next/image'
+import Link from 'next/link'
+import landingpage from '@/data/landingpage.json'
+
+export default function HeroSection() {
+ return (
+
+ {/* Hero Background Illustrations */}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Open Source made right
+
+
+
+
+ We trust in the
+
+
+ power
+
+
+
+ of
+ Open Collaboration!
+
+
+
+
+ We believe that openness and transparency create substantial value for companies, projects, and individuals.
+ Our goal is to support our partners in establishing important concepts such as Open Source and Open Data.
+ This strengthens core aspects of IT, such as standards and security automatically within the company.
+ Through our work, we also promote active engagement in the IT scene and beyond.
+
+
+
+ {landingpage.category_navbar_visible && (
+
+
+ {landingpage.open_knowledge_visible && (
+ Open Knowledge
+ )}
+ {landingpage.open_events_visible && (
+ Open Events
+ )}
+ {landingpage.open_source_visible && (
+ Open Source
+ )}
+ {landingpage.open_doors_visible && (
+ Open Doors
+ )}
+ {landingpage.open_data_visible && (
+ Open Data
+ )}
+ {landingpage.open_office_visible && (
+ Open Office
+ )}
+ {landingpage.open_diversity_visible && (
+ Open Diversity
+ )}
+
+
+ )}
+
+
+
+
+
+
+
+
+
+ {landingpage.category_navbar_visible && (
+
+
+ {landingpage.open_knowledge_visible && (
+ Open Knowledge
+ )}
+ {landingpage.open_events_visible && (
+ Open Events
+ )}
+ {landingpage.open_source_visible && (
+ Open Source
+ )}
+ {landingpage.open_doors_visible && (
+ Open Doors
+ )}
+ {landingpage.open_data_visible && (
+ Open Data
+ )}
+ {landingpage.open_office_visible && (
+ Open Office
+ )}
+ {landingpage.open_diversity_visible && (
+ Open Diversity
+ )}
+
+
+ )}
+
+ )
+}
diff --git a/src/components/home/OpenDoorsSection.tsx b/src/components/home/OpenDoorsSection.tsx
new file mode 100644
index 0000000..ea7ecae
--- /dev/null
+++ b/src/components/home/OpenDoorsSection.tsx
@@ -0,0 +1,100 @@
+import Image from 'next/image'
+
+export default function OpenDoorsSection() {
+ return (
+
+
+
+
+
Open Doors
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This puts us on an equal footing with interested applicants, existing and new customers,
+ potential partner companies, and people for whom our main topics are of interest.
+
+
+
+
+
+
+
+ We always have an open ear for others.
+
+
+
+
+
+
+
+ Anyone can easily{' '}
+
+ book a free appointment
+
+ {' '}to chat with us about topics like open source and Java or discuss technical issues with us.
+
+ )
+}
diff --git a/src/components/home/OpenEventsSection.tsx b/src/components/home/OpenEventsSection.tsx
new file mode 100644
index 0000000..fc5e5aa
--- /dev/null
+++ b/src/components/home/OpenEventsSection.tsx
@@ -0,0 +1,66 @@
+import Image from 'next/image'
+
+export default function OpenEventsSection() {
+ return (
+
+
+
+
+
+
+
+
+
Open Events
+
+
+
+
+ We organize the{' '}
+
+ Java User Group Dortmund
+
+ {' '}and enable via sponsorship, free meetups and physical events in the metropolitan region Rhine-Ruhr.
+ We actively participate in the management of the{' '}
+
+ JavaLand
+
+ {' '}conference and the{' '}
+
+ Cyberland
+
+ {' '}initiative. In doing so, we support the offering of free or cost-covering events in the German-speaking Java and IT scene.
+
+
+
+
+
+
+
Open Events
+
+
+
+
+
+
+
+
+ )
+}
diff --git a/src/components/home/OpenKnowledgeSection.tsx b/src/components/home/OpenKnowledgeSection.tsx
new file mode 100644
index 0000000..53e4531
--- /dev/null
+++ b/src/components/home/OpenKnowledgeSection.tsx
@@ -0,0 +1,101 @@
+import Image from 'next/image'
+
+export default function OpenKnowledgeSection() {
+ return (
+
+
+
+
+
Open Knowledge
+
+
+
+
+
+
+
+
+
+
+
+
+
Open Knowledge
+
+
+
+
+ The open availability of well-prepared knowledge is essential for us, therefore we share a large part of our know-how in
+
+
+
+
+
+ blog posts
+
+
+
+ professional articles
+
+
+
+ lectures
+
+
+
+
+ even though – or better said – because we earn our money with expertise.
+
+
+
+ The free accessibility of knowledge is very important to us, even outside of our area of expertise.
+ Therefore, we act as a sponsor of{' '}
+
+ Wikimedia
+
+ {' '}and{' '}
+
+ CORRECTIV
+ .
+
+
+
+
+
+ )
+}
diff --git a/src/components/home/OpenOfficeSection.tsx b/src/components/home/OpenOfficeSection.tsx
new file mode 100644
index 0000000..c4aadda
--- /dev/null
+++ b/src/components/home/OpenOfficeSection.tsx
@@ -0,0 +1,64 @@
+import Image from 'next/image'
+
+export default function OpenOfficeSection() {
+ return (
+
+
+
+
+
+
+ Open Office
+
+
+
+
+
+
+
+
+
+
+
100%
+
+ Every employee has a 100% free choice of a workplace with us.
+
+
+
+
+ We want to offer all employees the most comfortable integration of working time into their individual life.
+
+
+
+ In a home office or anywhere in the world in a co-working space: for us, "open office" is not a status symbol but a lived value.
+
+
+
+
+
+ )
+}
diff --git a/src/components/home/OpenSourceSection.tsx b/src/components/home/OpenSourceSection.tsx
new file mode 100644
index 0000000..59f8c1d
--- /dev/null
+++ b/src/components/home/OpenSourceSection.tsx
@@ -0,0 +1,81 @@
+import Image from 'next/image'
+
+export default function OpenSourceSection() {
+ return (
+
+
+
+
+
+
+
+
+ Open
+
+ {' '}Source
+
+
+
+
+
+
+
+
+
+
+ Open
+
+ {' '}Source
+
+
+
+ Open Source is a matter close to our heart. We believe that software must be largely openly available
+ in order to advance society – by, among other things, establishing open standards or enabling manufacturer
+ independence and transparent security audits.
+
+
+
+ Therefore, we are a member of the{' '}
+
+ Eclipse Foundation
+
+ {' '}and also actively work with others on key projects in the Java ecosystem, such as{' '}
+
+ Eclipse Adoptium
+
+ {' '}and{' '}
+
+ JakartaEE
+
+ . Furthermore, we support small OS projects and develop core components ourselves as open source software.
+