diff --git a/src/components/MainPageLayout.js b/src/components/MainPageLayout.js index 4dbb6b6..aad1f7b 100644 --- a/src/components/MainPageLayout.js +++ b/src/components/MainPageLayout.js @@ -78,25 +78,25 @@ const MainPageLayout = () => { }; const allTitles = { - home: t('titles.filiale'), - aktionen: t('titles.home'), - filiale: t('titles.aktionen') + home: t('titles.home'), + aktionen: t('titles.aktionen'), + filiale: t('titles.filiale') }; // Define all content boxes for layered rendering const allContentBoxes = { home: [ { - title: t('sections.seeds'), - image: "/assets/images/seeds.jpg", + title: t('sections.address1'), + image: "/assets/images/filiale1.jpg", bgcolor: "#e1f0d3", - link: "/Kategorie/Seeds" + link: "/filiale" }, { - title: t('sections.stecklinge'), - image: "/assets/images/cutlings.jpg", + title: t('sections.address2'), + image: "/assets/images/filiale2.jpg", bgcolor: "#e8f5d6", - link: "/Kategorie/Stecklinge" + link: "/filiale" } ], aktionen: [ @@ -115,16 +115,16 @@ const MainPageLayout = () => { ], filiale: [ { - title: t('sections.address1'), - image: "/assets/images/filiale1.jpg", + title: t('sections.seeds'), + image: "/assets/images/seeds.jpg", bgcolor: "#e1f0d3", - link: "/filiale" + link: "/Kategorie/Seeds" }, { - title: t('sections.address2'), - image: "/assets/images/filiale2.jpg", + title: t('sections.stecklinge'), + image: "/assets/images/cutlings.jpg", bgcolor: "#e8f5d6", - link: "/filiale" + link: "/Kategorie/Stecklinge" } ] };