From 4e708d0a14176f1aa55c7d77ac3e46ef432afcf4 Mon Sep 17 00:00:00 2001 From: sebseb7 Date: Tue, 9 Sep 2025 19:35:31 +0200 Subject: [PATCH] feat(ui): add configurator navigation button to header Introduce a new button in the CategoryList component that links to the Konfigurator page, featuring a SettingsIcon and responsive styling for mobile and desktop views. Includes text overlay effects for active state visualization and i18n support for "home" label. --- src/components/header/CategoryList.js | 79 +++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) diff --git a/src/components/header/CategoryList.js b/src/components/header/CategoryList.js index 6c27ac1..828643b 100644 --- a/src/components/header/CategoryList.js +++ b/src/components/header/CategoryList.js @@ -6,6 +6,7 @@ import Typography from "@mui/material/Typography"; import Collapse from "@mui/material/Collapse"; import { Link } from "react-router-dom"; import HomeIcon from "@mui/icons-material/Home"; +import SettingsIcon from "@mui/icons-material/Settings"; import MenuIcon from "@mui/icons-material/Menu"; import CloseIcon from "@mui/icons-material/Close"; import { withI18n } from "../../i18n/withTranslation.js"; @@ -337,6 +338,84 @@ class CategoryList extends Component { ) )} + + );