From 6671c0d251e8714837c0f327a914fb944c0fbe82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dorien=20Gr=C3=B6nwald?= Date: Sun, 23 Jun 2024 10:25:38 +0200 Subject: [PATCH 1/2] feat: add background to process section --- src/tsx/components/sections/Process.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tsx/components/sections/Process.tsx b/src/tsx/components/sections/Process.tsx index 947ce07..0ce9925 100644 --- a/src/tsx/components/sections/Process.tsx +++ b/src/tsx/components/sections/Process.tsx @@ -18,7 +18,7 @@ function Process() { }; return ( -
+

Der aktuelle Projektfortschritt From b550ea3c6146edec746f715f5498917ba3e268d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dorien=20Gr=C3=B6nwald?= Date: Sun, 23 Jun 2024 10:39:09 +0200 Subject: [PATCH 2/2] feat: add background to stakeholder and contact section --- src/tsx/components/Accordion.tsx | 2 +- src/tsx/components/sections/Contact.tsx | 9 +++++++-- src/tsx/components/sections/Introduction.tsx | 2 +- src/tsx/components/sections/Stakeholder.tsx | 2 +- src/tsx/pages/HomePage.tsx | 8 +++++--- 5 files changed, 15 insertions(+), 8 deletions(-) diff --git a/src/tsx/components/Accordion.tsx b/src/tsx/components/Accordion.tsx index 7e4ca39..69550d1 100644 --- a/src/tsx/components/Accordion.tsx +++ b/src/tsx/components/Accordion.tsx @@ -24,7 +24,7 @@ const Accordion: React.FC = ({ label, children }) => { }, [open]); return ( -
  • +
  • = ({ spacingTop = true }) => { return ( -
    +

    Hast du weitere Fragen, Feedback oder ein Anliegen?

    diff --git a/src/tsx/components/sections/Introduction.tsx b/src/tsx/components/sections/Introduction.tsx index b00a94a..d2bde5f 100644 --- a/src/tsx/components/sections/Introduction.tsx +++ b/src/tsx/components/sections/Introduction.tsx @@ -37,7 +37,7 @@ function Introduction() { } return ( -
    +

    Was beinhaltet smartes Grünflächenmanagement alles? diff --git a/src/tsx/components/sections/Stakeholder.tsx b/src/tsx/components/sections/Stakeholder.tsx index b58833b..98f583f 100644 --- a/src/tsx/components/sections/Stakeholder.tsx +++ b/src/tsx/components/sections/Stakeholder.tsx @@ -36,7 +36,7 @@ const Stakeholder: React.FC = ({ hasDesktopList = false }) => } return ( -
    +

    Wer sind die Beteiligten? diff --git a/src/tsx/pages/HomePage.tsx b/src/tsx/pages/HomePage.tsx index f7bfa8b..230cf22 100644 --- a/src/tsx/pages/HomePage.tsx +++ b/src/tsx/pages/HomePage.tsx @@ -13,9 +13,11 @@ function HomePage() { - - - +
    + + +
    + ); }