diff --git a/public/images/cart-icon.svg b/public/images/cart-icon.svg new file mode 100644 index 0000000..d411410 --- /dev/null +++ b/public/images/cart-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/images/map-icon.svg b/public/images/map-icon.svg new file mode 100644 index 0000000..afd0bbc --- /dev/null +++ b/public/images/map-icon.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/images/setting-icon.svg b/public/images/setting-icon.svg new file mode 100644 index 0000000..8bbf82c --- /dev/null +++ b/public/images/setting-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/Advertisement/design3/index.js b/src/components/Advertisement/design3/index.js index 890dfa7..0a6057f 100644 --- a/src/components/Advertisement/design3/index.js +++ b/src/components/Advertisement/design3/index.js @@ -1,73 +1,64 @@ import React from "react"; -import cart from "./cart-icon.svg"; -import map from "./map-icon.svg"; -import setting from "./setting-icon.svg"; - const AdvertisementDesign3 = ({ features }) => { return ( -
-
-
-

تبلیغات دانوینی

-

- لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با - استفاده از طراحان گرافیک است. -

-
- {features.map((feature, i) => ( -
- -

- {feature.title} -

-
- ))} -
-
-
-
-
-
- - +
+
+

تبلیغات دانوینی

+

+ لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده + از طراحان گرافیک است. +

+
+ {features.map((feature, i) => ( +
+ +

+ {feature.title} +

+
+ ))}
-
+
+
+
+
+ + +
+ ); }; @@ -76,15 +67,15 @@ export default AdvertisementDesign3; AdvertisementDesign3.defaultProps = { features: [ { - icon: cart, + icon: "images/cart-icon.svg", title: "قابلیت های فروشگاهی بسیار پیشرفته و ساده", }, { - icon: map, + icon: "images//map-icon.svg", title: "ارسال به تمام نقاط ایران", }, { - icon: setting, + icon: "images/setting-icon.svg", title: "تنظیمات پیشرفته و بیش از 2000 ماژول اختصاصی", }, ],