Automatisches Insolvenz-Monitoring für den deutschen Mittelstand.
diff --git a/src/components/Header.astro b/src/components/Header.astro
index 15c0d75..72cd6ee 100644
--- a/src/components/Header.astro
+++ b/src/components/Header.astro
@@ -17,13 +17,8 @@ const navItems = [
-
- INSOLVENZ-ALARM
+
+ INSOLVENZ-ALARM
diff --git a/src/components/Integrations.astro b/src/components/Integrations.astro
new file mode 100644
index 0000000..8cd85c9
--- /dev/null
+++ b/src/components/Integrations.astro
@@ -0,0 +1,94 @@
+---
+const integrations = [
+ {
+ name: "Odoo",
+ logo: "🔷",
+ status: "Geplant",
+ },
+ {
+ name: "SAP Business One",
+ logo: "🟦",
+ status: "Geplant",
+ },
+ {
+ name: "Microsoft Dynamics",
+ logo: "🟪",
+ status: "Geplant",
+ },
+ {
+ name: "DATEV",
+ logo: "🟩",
+ status: "Geplant",
+ },
+ {
+ name: "Lexware",
+ logo: "🟧",
+ status: "Geplant",
+ },
+ {
+ name: "sevDesk",
+ logo: "🟨",
+ status: "Geplant",
+ },
+];
+
+const channels = [
+ { name: "E-Mail", icon: "📧" },
+ { name: "WhatsApp", icon: "💬" },
+ { name: "Telegram", icon: "✈️" },
+ { name: "Webhook", icon: "🔗" },
+ { name: "REST API", icon: "⚡" },
+ { name: "Slack", icon: "💼" },
+];
+---
+
+
+
+
+
+ Integriert sich nahtlos in Ihre Systeme
+
+
+ Verbinden Sie Insolvenz-Alarm mit Ihrem ERP, CRM oder Buchhaltungssystem –
+ oder nutzen Sie unsere flexiblen Benachrichtigungskanäle.
+
+
+
+
+
+
Benachrichtigungskanäle
+
+ {channels.map(channel => (
+
+ {channel.icon}
+ {channel.name}
+
+ ))}
+
+
+
+
+
+
ERP & Buchhaltungs-Integrationen
+
+ {integrations.map(integration => (
+
+
{integration.logo}
+
{integration.name}
+
+ {integration.status}
+
+
+ ))}
+
+
+
+
+ Fehlt Ihr System? Schreiben Sie uns!
+
+
+
+
+
diff --git a/src/pages/index.astro b/src/pages/index.astro
index a94d349..42af17c 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -4,6 +4,7 @@ import Header from '../components/Header.astro';
import Hero from '../components/Hero.astro';
import Stats from '../components/Stats.astro';
import Features from '../components/Features.astro';
+import Integrations from '../components/Integrations.astro';
import Pricing from '../components/Pricing.astro';
import Industries from '../components/Industries.astro';
import Waitlist from '../components/Waitlist.astro';
@@ -16,6 +17,7 @@ import Footer from '../components/Footer.astro';
+