From 99d18a28d6aa3a764c49d087816d783dec55e946 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 21 Feb 2026 16:12:54 +0100 Subject: [PATCH] Add logo, integrations section, improve spacing - Real logo SVG in header and footer - New Integrations section with ERP teaser (Odoo, SAP, DATEV, etc.) - Notification channels (Email, WhatsApp, Telegram, Webhook, API, Slack) - Improved grid spacing in features --- public/logo.svg | 24 ++++++++ src/components/Features.astro | 2 +- src/components/Footer.astro | 8 +-- src/components/Header.astro | 9 +-- src/components/Integrations.astro | 94 +++++++++++++++++++++++++++++++ src/pages/index.astro | 2 + 6 files changed, 125 insertions(+), 14 deletions(-) create mode 100644 public/logo.svg create mode 100644 src/components/Integrations.astro diff --git a/public/logo.svg b/public/logo.svg new file mode 100644 index 0000000..b7d690d --- /dev/null +++ b/public/logo.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/components/Features.astro b/src/components/Features.astro index 6088361..aa16d2d 100644 --- a/src/components/Features.astro +++ b/src/components/Features.astro @@ -34,7 +34,7 @@ const features = [

-
+
{features.map((feature, index) => (
diff --git a/src/components/Footer.astro b/src/components/Footer.astro index af69027..15209c3 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -8,12 +8,8 @@ const currentYear = new Date().getFullYear();
-
- - - -
- INSOLVENZ-ALARM + Insolvenz-Alarm Logo + INSOLVENZ-ALARM

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 Logo + 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'; +