feat: Remove Telegraf link from footer and add ManufacturerCarousel to SharedCarousel component

This commit is contained in:
sebseb7
2026-03-11 05:56:25 +01:00
parent 65a676de46
commit 78bb99b418
3 changed files with 193 additions and 3 deletions

View File

@@ -7,6 +7,7 @@ import ChevronLeft from "@mui/icons-material/ChevronLeft";
import ChevronRight from "@mui/icons-material/ChevronRight";
import CategoryBox from "./CategoryBox.js";
import ProductCarousel from "./ProductCarousel.js";
import ManufacturerCarousel from "./ManufacturerCarousel.js";
import { withTranslation } from 'react-i18next';
import { withLanguage } from '../i18n/withTranslation.js';
@@ -419,6 +420,9 @@ class SharedCarousel extends React.Component {
{/* Product Carousel for "neu" category */}
<ProductCarousel categoryId="neu" />
{/* Manufacturer logo carousel */}
<ManufacturerCarousel />
</Box>
);
}