From cdea66b931d5f9f3a6fa44b9732631788670d09d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dorien=20Gr=C3=B6nwald?= Date: Sun, 23 Jun 2024 10:57:07 +0200 Subject: [PATCH 1/2] fix: update page title --- src/tsx/pages/ContactPage.tsx | 5 +++++ src/tsx/pages/HomePage.tsx | 27 ++++++++++++++++----------- src/tsx/pages/ProjectPage.tsx | 5 +++++ 3 files changed, 26 insertions(+), 11 deletions(-) diff --git a/src/tsx/pages/ContactPage.tsx b/src/tsx/pages/ContactPage.tsx index e93b2b6..3c6fd8d 100644 --- a/src/tsx/pages/ContactPage.tsx +++ b/src/tsx/pages/ContactPage.tsx @@ -1,8 +1,13 @@ +import { useEffect } from 'react'; import ContactHeroContent from "../components/hero/ContactHeroContent"; import Hero from "../components/sections/Hero"; import Stakeholder from "../components/sections/Stakeholder"; function ContactPage() { + useEffect(() => { + document.title = "Kontakt | Green Ecolution | Smartes Grünflächenmanagement"; + }, []); + const heroHeadline = "Noch neugierig?"; const heroDescription = "Eu elit quis eiusmod proident officia aute tempor tempor qui commodo aute qui. Excepteur id ea laboris fugiat dolor exercitation ut pariatur ut commodo non. Eu deserunt laboris dolore elit. Aliquip magna do nostrud velit esse anim do. Dolor culpa duis laboris nisi ea nulla nulla magna" diff --git a/src/tsx/pages/HomePage.tsx b/src/tsx/pages/HomePage.tsx index f7bfa8b..6a99f04 100644 --- a/src/tsx/pages/HomePage.tsx +++ b/src/tsx/pages/HomePage.tsx @@ -1,3 +1,4 @@ +import { useEffect } from 'react'; import Contact from "../components/sections/Contact"; import HompageHero from "../components/homepage/HomepageHero"; import HomepageDevider from "../components/homepage/HomepageDevider"; @@ -7,17 +8,21 @@ import Process from "./../components/sections/Process"; import Stakeholder from "./../components/sections/Stakeholder"; function HomePage() { - return ( -
- - - - - - - -
- ); + useEffect(() => { + document.title = "Startseite | Green Ecolution | Smartes Grünflächenmanagement"; + }, []); + + return ( +
+ + + + + + + +
+ ); } export default HomePage; diff --git a/src/tsx/pages/ProjectPage.tsx b/src/tsx/pages/ProjectPage.tsx index 5e9a498..0f721bd 100644 --- a/src/tsx/pages/ProjectPage.tsx +++ b/src/tsx/pages/ProjectPage.tsx @@ -1,3 +1,4 @@ +import { useEffect } from 'react'; import Advantages from "../components/sections/Advantages"; import DashboardPreview from "../components/sections/DashboardPreview"; import Hero from "../components/sections/Hero"; @@ -5,6 +6,10 @@ import Contact from "../components/sections/Contact"; import ProjectHeroContent from "../components/hero/ProjectHeroContent"; function ProjectPage() { + useEffect(() => { + document.title = "Projekt | Green Ecolution | Smartes Grünflächenmanagement"; + }, []); + const heroHeadline = "Alles wissenswerte über das Projekt"; const heroDescription = "Eu elit quis eiusmod proident officia aute tempor tempor qui commodo aute qui. Excepteur id ea laboris fugiat dolor exercitation ut pariatur ut commodo non. Eu deserunt laboris dolore elit. Aliquip magna do nostrud velit esse anim do. Dolor culpa duis laboris nisi ea nulla nulla magna" From 2b170c845f0c7bf4eb8ba3569d610a6ec024ce73 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Mon, 24 Jun 2024 07:38:35 +0000 Subject: [PATCH 2/2] Update dev image to commit bc201bc --- k8s/values/develop.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/values/develop.yaml b/k8s/values/develop.yaml index 1dfdb22..3068a13 100644 --- a/k8s/values/develop.yaml +++ b/k8s/values/develop.yaml @@ -5,7 +5,7 @@ deployment: image: repository: ghcr.io/smartcityflensburg/project-website-dev pullPolicy: Always - tag: "93c5868" + tag: "bc201bc" ingress: enabled: true className: "traefik"