Дропшиппинг, фулфилмент и внутренняя аналитика в одном
сервисе
-
diff --git a/src/sections/TestimonialsSection/TestimonialsSection.module.css b/src/sections/TestimonialsSection/TestimonialsSection.module.css
index 228908f..5b0ba16 100644
--- a/src/sections/TestimonialsSection/TestimonialsSection.module.css
+++ b/src/sections/TestimonialsSection/TestimonialsSection.module.css
@@ -9,6 +9,9 @@
font-size: 2rem;
}
+.container {
+ max-width: 30rem;
+}
@media screen and (min-width: 641px) {
.title {
font-size: 2.8rem;
diff --git a/src/sections/TestimonialsSection/TestimonialsSection.tsx b/src/sections/TestimonialsSection/TestimonialsSection.tsx
index 208ee36..3774106 100644
--- a/src/sections/TestimonialsSection/TestimonialsSection.tsx
+++ b/src/sections/TestimonialsSection/TestimonialsSection.tsx
@@ -7,12 +7,13 @@ import {Carousel} from "@/shared/components/Carousel/Carousel";
export function TestimonialsSection() {
return (
-
+
Посмотрите отзывы от наших клиентов
-
-
-
+
diff --git a/src/sections/WhyDencoSection/components/WhyDencoItem/WhyDencoItem.module.css b/src/sections/WhyDencoSection/components/WhyDencoItem/WhyDencoItem.module.css
index 2322ed6..1d0081b 100644
--- a/src/sections/WhyDencoSection/components/WhyDencoItem/WhyDencoItem.module.css
+++ b/src/sections/WhyDencoSection/components/WhyDencoItem/WhyDencoItem.module.css
@@ -21,6 +21,8 @@
.body {
position: relative;
z-index: 2;
+ flex:1;
+ text-align: center;
}
@media screen and (min-width: 641px) {
diff --git a/src/sections/WideChoiceSection/WideChoiceSection.tsx b/src/sections/WideChoiceSection/WideChoiceSection.tsx
index 344aad0..f4c04c3 100644
--- a/src/sections/WideChoiceSection/WideChoiceSection.tsx
+++ b/src/sections/WideChoiceSection/WideChoiceSection.tsx
@@ -8,8 +8,8 @@ import bear from '@/shared/assets/images/bear.png'
import tools from '@/shared/assets/images/tools.png'
import ball from '@/shared/assets/images/ball.png'
import stationery from '@/shared/assets/images/stationery.png'
-import huntingAndFishing from '@/shared/assets/images/hunting and fishing.png'
-import feast from '@/shared/assets/images/feast.png'
+import garden from '@/shared/assets/images/garden.png'
+import home from '@/shared/assets/images/home.png'
import healthAndBeauty from '@/shared/assets/images/health and beauty.png'
import electronics from '@/shared/assets/images/electronics.png'
import sliderArrowLeft from "@/shared/assets/icons/sliderArrowLeft.svg";
@@ -44,14 +44,37 @@ export function WideChoiceSection() {
Обширный выбор товаров из различных категорий.
Более миллиона товаров - ассортимент обновляется ежедневно
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/src/sections/WideChoiceSection/components/WideChoiceItem/WideChoiceItem.module.css b/src/sections/WideChoiceSection/components/WideChoiceItem/WideChoiceItem.module.css
index 4d4979a..6bfc9c5 100644
--- a/src/sections/WideChoiceSection/components/WideChoiceItem/WideChoiceItem.module.css
+++ b/src/sections/WideChoiceSection/components/WideChoiceItem/WideChoiceItem.module.css
@@ -7,6 +7,7 @@
height: 14rem;
border: 1px solid var(--grey2);
margin: 0 auto;
+ display: block;
}
.imageContainer {
diff --git a/src/sections/WideChoiceSection/components/WideChoiceItem/WideChoiceItem.tsx b/src/sections/WideChoiceSection/components/WideChoiceItem/WideChoiceItem.tsx
index 19b5741..e12ab78 100644
--- a/src/sections/WideChoiceSection/components/WideChoiceItem/WideChoiceItem.tsx
+++ b/src/sections/WideChoiceSection/components/WideChoiceItem/WideChoiceItem.tsx
@@ -5,19 +5,20 @@ export type WideChoiceItemProps = {
imgSrc: StaticImageData,
name: string,
alt: string,
+ href: string,
};
-export function WideChoiceItem({imgSrc, name, alt, ...otherProps}: WideChoiceItemProps) {
+export function WideChoiceItem({imgSrc, name, alt,href , ...otherProps}: WideChoiceItemProps) {
return (