1234567891011121314151617181920212223242526 |
- import { Box, Stack, Typography } from "@mui/material";
- import { useSelector } from "react-redux";
- import MainPageImage from "../../images/main-page-image.png";
- import { GoodCardSlider } from "../common/GoodCardSlider";
- const MainPage = () => {
- const popularGoods = useSelector((state) => state.promise?.goodsPopular?.payload || []);
- return (
- <Box className="MainPage">
- <Stack spacing={3}>
- <Box component="img" src={MainPageImage} className="MainPageImage" />
- <Box>
- <Typography variant="h5" color="#79747E" textAlign="left">
- Популярні товари
- </Typography>
- </Box>
- <Box>
- <GoodCardSlider goods={popularGoods} />
- </Box>
- </Stack>
- </Box>
- );
- };
- export { MainPage };
|