ecomlab-components-next 0.1.12 → 0.1.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/dist/components/Buttons/ButtonBasic/ButtonBasic.js +1 -0
  2. package/dist/components/ConstructorComponents/AdvantagesBlock/AdvantagesBlock.js +114 -0
  3. package/dist/components/ConstructorComponents/AdvantagesBlock/AdvantagesBlock.scss +182 -0
  4. package/dist/components/ConstructorComponents/AdvantagesBlock/AdvantagesBlock.stories.js +33 -0
  5. package/dist/components/ConstructorComponents/CardsInfo/CardsInfo.js +158 -0
  6. package/dist/components/ConstructorComponents/CardsInfo/CardsInfo.scss +165 -0
  7. package/dist/components/ConstructorComponents/CardsInfo/CardsInfo.stories.js +19 -0
  8. package/dist/components/ConstructorComponents/ClientsAboutUs/ClientsAboutUs.scss +1 -1
  9. package/dist/components/ConstructorComponents/Header/Hader.stories.js +24 -0
  10. package/dist/components/ConstructorComponents/Header/Header.js +102 -0
  11. package/dist/components/ConstructorComponents/Header/Header.scss +139 -0
  12. package/dist/components/ConstructorComponents/Header/img/Ozon.svg +20 -0
  13. package/dist/components/ConstructorComponents/Header/img/WB.svg +15 -0
  14. package/dist/components/ConstructorComponents/Header/img/Yandex Market.svg +14 -0
  15. package/dist/components/ConstructorComponents/PhoneBlock/PhoneBlock.js +46 -0
  16. package/dist/components/ConstructorComponents/PhoneBlock/PhoneBlock.scss +180 -0
  17. package/dist/components/ConstructorComponents/PhoneBlock/PhoneBlock.stories.js +19 -0
  18. package/dist/components/ConstructorComponents/PhoneBlock/img/phone.png +0 -0
  19. package/dist/components/ConstructorComponents/Questions/Questions.js +68 -0
  20. package/dist/components/ConstructorComponents/Questions/Questions.scss +131 -0
  21. package/dist/components/ConstructorComponents/Questions/Questions.stories.js +57 -0
  22. package/dist/components/ConstructorComponents/Questions/img/ar_down.svg +5 -0
  23. package/dist/components/ConstructorComponents/Questions/img/ar_up.svg +5 -0
  24. package/dist/components/ConstructorComponents/Tariff/TariffPlan.js +732 -0
  25. package/dist/components/ConstructorComponents/Tariff/TariffPlan.scss +485 -0
  26. package/dist/components/ConstructorComponents/Tariff/TariffPlan.stories.js +16 -0
  27. package/dist/components/ConstructorComponents/Tariff/img/active.svg +5 -0
  28. package/dist/components/ConstructorComponents/Tariff/img/add.svg +6 -0
  29. package/dist/components/ConstructorComponents/Tariff/img/bx-chevron-down.svg +3 -0
  30. package/dist/components/ConstructorComponents/Tariff/img/bx-face.svg +7 -0
  31. package/dist/components/ConstructorComponents/Tariff/img/bx-info-circle.svg +6 -0
  32. package/dist/components/ConstructorComponents/Tariff/img/bx-package.svg +3 -0
  33. package/dist/components/ConstructorComponents/Tariff/img/chevron-down.png +0 -0
  34. package/dist/components/ConstructorComponents/Tariff/img/copy.svg +5 -0
  35. package/dist/components/ConstructorComponents/Tariff/img/disactive.svg +4 -0
  36. package/dist/components/ConstructorComponents/Tariff/img/discount-icon.svg +3 -0
  37. package/dist/components/ConstructorComponents/Tariff/img/drop_blue.svg +5 -0
  38. package/dist/components/ConstructorComponents/Tariff/img/stars_glass.svg +31 -0
  39. package/dist/components/ConstructorComponents/Tariff/imgs/bx-bar-chart-square.svg +4 -0
  40. package/dist/components/ConstructorComponents/Tariff/imgs/bx-book-open.svg +5 -0
  41. package/dist/components/ConstructorComponents/Tariff/imgs/bx-calendar-week.svg +6 -0
  42. package/dist/components/ConstructorComponents/Tariff/imgs/bx-cart-alt.svg +5 -0
  43. package/dist/components/ConstructorComponents/Tariff/imgs/bx-chart.svg +4 -0
  44. package/dist/components/ConstructorComponents/Tariff/imgs/bx-chat.svg +4 -0
  45. package/dist/components/ConstructorComponents/Tariff/imgs/bx-detail.svg +4 -0
  46. package/dist/components/ConstructorComponents/Tariff/imgs/bx-donate-heart.svg +3 -0
  47. package/dist/components/ConstructorComponents/Tariff/imgs/bx-face.svg +5 -0
  48. package/dist/components/ConstructorComponents/Tariff/imgs/bx-globe.svg +3 -0
  49. package/dist/components/ConstructorComponents/Tariff/imgs/bx-layout.svg +3 -0
  50. package/dist/components/ConstructorComponents/Tariff/imgs/bx-message-detail.svg +6 -0
  51. package/dist/components/ConstructorComponents/Tariff/imgs/bx-notification.svg +4 -0
  52. package/dist/components/ConstructorComponents/Tariff/imgs/bx-package.svg +3 -0
  53. package/dist/components/ConstructorComponents/Tariff/imgs/bx-slider.svg +3 -0
  54. package/dist/components/ConstructorComponents/Tariff/imgs/check.svg +6 -0
  55. package/dist/components/ConstructorComponents/VideoBlock/VideoBlock.js +25 -0
  56. package/dist/components/ConstructorComponents/VideoBlock/VideoBlock.scss +41 -0
  57. package/dist/components/ConstructorComponents/VideoBlock/VideoBlock.stories.js +18 -0
  58. package/dist/components/Tabs/TabsGreen/TabsGreen.js +47 -0
  59. package/dist/components/Tabs/TabsGreen/TabsGreen.scss +77 -0
  60. package/package.json +1 -1
@@ -0,0 +1,180 @@
1
+ .phone-block {
2
+ display: flex;
3
+ align-items: end;
4
+ width: 100%;
5
+
6
+ &__top {
7
+ position: relative;
8
+ margin-top: 100px;
9
+ }
10
+
11
+ &__inside-content {
12
+ display: flex;
13
+ flex-direction: column;
14
+ width: 100%;
15
+ border-radius: 20px;
16
+ gap: 24px;
17
+ }
18
+
19
+ &__content {
20
+ display: flex;
21
+ flex-direction: column;
22
+ width: 100%;
23
+ border-radius: 20px;
24
+ height: 100%;
25
+ padding: 32px;
26
+ height: auto;
27
+ position: relative;
28
+ z-index: 0;
29
+
30
+ &::before {
31
+ content: '';
32
+ display: inline-block;
33
+ border-radius: 20px;
34
+ position: absolute;
35
+ background: #EEE;
36
+ top: 0;
37
+ left: 0;
38
+ right: -346px;
39
+ bottom: 0;
40
+ z-index: -2;
41
+ }
42
+ }
43
+
44
+ &__title {
45
+ color: #232121;
46
+ font-family: "Golos Text";
47
+ font-size: 42px;
48
+ font-style: normal;
49
+ font-weight: 500;
50
+ line-height: 51px;
51
+ }
52
+
53
+ &__description {
54
+ color: #333;
55
+ font-family: "Golos Text";
56
+ font-size: 18px;
57
+ font-style: normal;
58
+ font-weight: 400;
59
+ line-height: 24px;
60
+ }
61
+
62
+ &__btn-group {
63
+ display: flex;
64
+ gap: 12px;
65
+ }
66
+
67
+ &__img-box {
68
+ width: calc(346px + 100px);
69
+ min-width: 346px;
70
+ height: auto;
71
+ position: relative;
72
+ z-index: 1;
73
+ }
74
+
75
+ &__img {
76
+ width: 100%;
77
+ height: 100%;
78
+ }
79
+ }
80
+
81
+ @media (max-width: 1100px) {
82
+ .phone-block {
83
+ width: 100%;
84
+
85
+ &__top {}
86
+
87
+ &__inside-content {
88
+ gap: 16px;
89
+ }
90
+
91
+ &__content {
92
+ padding: 20px 0px 20px 20px;
93
+
94
+ &::before {
95
+ content: '';
96
+ display: inline-block;
97
+ border-radius: 20px;
98
+ position: absolute;
99
+ background: #EEE;
100
+ top: 0;
101
+ left: 0;
102
+ right: -290px;
103
+ bottom: 0;
104
+ z-index: -2;
105
+ }
106
+ }
107
+
108
+ &__title {
109
+ font-size: 28px;
110
+ line-height: 32px;
111
+ }
112
+
113
+ &__description {
114
+ font-size: 16px;
115
+ line-height: 24px;
116
+ }
117
+
118
+ &__btn-group {}
119
+
120
+ &__img-box {
121
+ max-width: 290px;
122
+ min-width: 290px;
123
+ }
124
+
125
+ &__img {}
126
+ }
127
+ }
128
+
129
+ @media (max-width: 430px) {
130
+ .phone-block {
131
+ width: 100%;
132
+
133
+ &__top {}
134
+
135
+ &__inside-content {
136
+ gap: 16px;
137
+ }
138
+
139
+ &__content {
140
+ padding: 20px;
141
+ gap: 16px;
142
+
143
+ &::before {
144
+ content: '';
145
+ display: inline-block;
146
+ border-radius: 20px;
147
+ position: absolute;
148
+ background: #EEE;
149
+ top: 0;
150
+ left: 0;
151
+ right: 0px;
152
+ bottom: 0;
153
+ z-index: -2;
154
+ }
155
+ }
156
+
157
+ &__title {
158
+ font-size: 20px;
159
+ line-height: 24px;
160
+ }
161
+
162
+ &__description {
163
+ font-size: 14px;
164
+ line-height: 20px;
165
+ }
166
+
167
+ &__btn-group {}
168
+
169
+ &__img-box {
170
+ display: none;
171
+ }
172
+
173
+ &__img {}
174
+
175
+ .btn-basic {
176
+ max-width: 100% !important;
177
+ width: 100% !important;
178
+ }
179
+ }
180
+ }
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = exports.PhoneBlockTest = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _PhoneBlock = _interopRequireDefault(require("./PhoneBlock"));
9
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
10
+ var _default = exports["default"] = {
11
+ title: 'PhoneBlock',
12
+ component: _PhoneBlock["default"]
13
+ };
14
+ var PhoneBlockTest = exports.PhoneBlockTest = function PhoneBlockTest() {
15
+ return /*#__PURE__*/_react["default"].createElement(_PhoneBlock["default"], {
16
+ title: "\u0417\u0430\u0445\u043E\u0434\u0438\u0442\u0435 \u0432 \u043D\u0430\u0448 Telegram-\u043A\u0430\u043D\u0430\u043B, \u0442\u0430\u043C \u043C\u044B \u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u043E \u0434\u0435\u043B\u0438\u043C\u0441\u044F \u043F\u043E\u043B\u0435\u0437\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0439 \u0438 \u043D\u0430\u0448\u0438\u043C\u0438 \u043A\u0435\u0439\u0441\u0430\u043C\u0438",
17
+ description: "\u0422\u0430\u043C \u0432\u044B \u043D\u0430\u0439\u0434\u0451\u0442\u0435 \u0435\u0434\u0438\u043D\u043E\u043C\u044B\u0448\u043B\u0435\u043D\u043D\u0438\u043A\u043E\u0432, \u043F\u043E\u0434\u0435\u043B\u0438\u0442\u0435\u0441\u044C \u043E\u043F\u044B\u0442\u043E\u043C \u0438 \n \u0437\u0430\u0434\u0430\u0434\u0438\u0442\u0435 \u0438\u043D\u0442\u0435\u0440\u0435\u0441\u0443\u044E\u0449\u0438\u0435 \u0432\u043E\u043F\u0440\u043E\u0441\u044B, \u043D\u0430 \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u043C\u044B \u043E\u0431\u044F\u0437\u0430\u0442\u0435\u043B\u044C\u043D\u043E \u043E\u0442\u0432\u0435\u0442\u0438\u043C"
18
+ });
19
+ };
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+ 'use client';
3
+
4
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports["default"] = void 0;
9
+ var _react = _interopRequireWildcard(require("react"));
10
+ require("./Questions.scss");
11
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
12
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
13
+ function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
14
+ function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
15
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
16
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
17
+ function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
18
+ function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
19
+ var Questions = function Questions(_ref) {
20
+ var title = _ref.title,
21
+ _ref$list = _ref.list,
22
+ list = _ref$list === void 0 ? [] : _ref$list;
23
+ var _useState = (0, _react.useState)(new Set()),
24
+ _useState2 = _slicedToArray(_useState, 2),
25
+ currentDrop = _useState2[0],
26
+ setCurrentDrop = _useState2[1];
27
+ return /*#__PURE__*/_react["default"].createElement("section", {
28
+ className: "landing-questions",
29
+ itemScope: true,
30
+ itemType: "https://schema.org/FAQPage"
31
+ }, /*#__PURE__*/_react["default"].createElement("div", {
32
+ className: "landing-questions__content"
33
+ }, /*#__PURE__*/_react["default"].createElement("h2", {
34
+ className: "landing-questions__title"
35
+ }, title), /*#__PURE__*/_react["default"].createElement("div", {
36
+ className: "landing-questions__list",
37
+ itemScope: true,
38
+ itemType: "https://schema.org/Question"
39
+ }, list === null || list === void 0 ? void 0 : list.map(function (_ref2) {
40
+ var questions = _ref2.questions,
41
+ response = _ref2.response;
42
+ return /*#__PURE__*/_react["default"].createElement("div", {
43
+ onClick: function onClick(e) {
44
+ var newState = new Set(currentDrop);
45
+ if (currentDrop.has(questions)) {
46
+ newState["delete"](questions);
47
+ } else {
48
+ newState.add(questions);
49
+ }
50
+ setCurrentDrop(newState);
51
+ },
52
+ className: "landing-questions__item",
53
+ key: questions + response
54
+ }, /*#__PURE__*/_react["default"].createElement("h3", {
55
+ className: "landing-questions__title-questions",
56
+ itemProp: "name"
57
+ }, questions), /*#__PURE__*/_react["default"].createElement("div", {
58
+ itemProp: "acceptedAnswer",
59
+ itemScope: true,
60
+ itemType: "https://schema.org/Answer",
61
+ className: currentDrop.has(questions) ? 'landing-questions__response-box' : 'landing-questions__response-box_hide'
62
+ }, /*#__PURE__*/_react["default"].createElement("p", {
63
+ itemProp: "text",
64
+ className: "landing-questions__text-response"
65
+ }, response)));
66
+ }))));
67
+ };
68
+ var _default = exports["default"] = Questions;
@@ -0,0 +1,131 @@
1
+ .landing-questions {
2
+ display: flex;
3
+ align-items: flex-start;
4
+ gap: 30px;
5
+ border-radius: 20px;
6
+
7
+ &__content {
8
+ display: flex;
9
+ gap: 32px;
10
+ width: 100%;
11
+ margin-left: auto;
12
+ margin-right: auto;
13
+ }
14
+
15
+ &__title {
16
+ color: var(--Text-Link, #0009E8);
17
+ font-family: "Golos Text";
18
+ font-size: 42px;
19
+ font-style: normal;
20
+ font-weight: 500;
21
+ line-height: 52px;
22
+ max-width: 385px;
23
+ }
24
+
25
+ &__list {
26
+ display: flex;
27
+ flex-direction: column;
28
+ gap: 32px;
29
+ width: 100%;
30
+ }
31
+
32
+ &__item {
33
+ display: flex;
34
+ width: 100%;
35
+ flex-direction: column;
36
+ // gap: 14px;
37
+ border-radius: 10px;
38
+ }
39
+
40
+ &__title-questions {
41
+ display: flex;
42
+ cursor: pointer;
43
+ width: 100%;
44
+ align-items: center;
45
+ gap: 24px;
46
+ justify-content: space-between;
47
+ color: #333;
48
+ font-family: "Golos Text";
49
+ font-size: 22px;
50
+ font-style: normal;
51
+ font-weight: 600;
52
+ line-height: 28px;
53
+
54
+ &:hover {
55
+ color: #38DD79;
56
+ }
57
+ }
58
+
59
+ &__response-box {
60
+ max-height: 1600px;
61
+ transition: 0.5s;
62
+
63
+ &_hide {
64
+ overflow: hidden;
65
+ max-height: 0px;
66
+ transition: 0.5s;
67
+ }
68
+ }
69
+
70
+ &__text-response {
71
+ color: #333;
72
+ font-family: "Golos Text";
73
+ font-size: 16px;
74
+ font-style: normal;
75
+ font-weight: 400;
76
+ line-height: 26px;
77
+ margin-top: 18px;
78
+ }
79
+
80
+ &__btn-drop {
81
+ background-color: inherit;
82
+ border: none;
83
+ cursor: pointer;
84
+ }
85
+ }
86
+
87
+ @media (max-width: 1100px) {
88
+ .landing-questions {
89
+ &__content {
90
+ flex-direction: column;
91
+ }
92
+
93
+ &__title {
94
+ font-size: 28px;
95
+ line-height: 32px;
96
+ }
97
+
98
+ &__title-questions {
99
+ font-size: 22px;
100
+ line-height: 28px;
101
+ }
102
+
103
+ &__list {
104
+ // gap: 20px;
105
+ }
106
+ }
107
+ }
108
+
109
+ @media (max-width: 430px) {
110
+ .landing-questions {
111
+
112
+ &__title {
113
+ font-size: 24px;
114
+ line-height: 32px;
115
+ }
116
+
117
+ &__title-questions {
118
+ font-size: 16px;
119
+ line-height: 24px;
120
+ }
121
+
122
+ &__text-response {
123
+ font-size: 16px;
124
+ line-height: 26px;
125
+ }
126
+
127
+ &__list {
128
+ // gap: 20px;
129
+ }
130
+ }
131
+ }
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = exports.QuestionsTest = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _Questions = _interopRequireDefault(require("./Questions"));
9
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
10
+ var questions_list = [{
11
+ questions: "\u0417\u0430\u0447\u0435\u043C \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C ECOMRU, \u043A\u043E\u0433\u0434\u0430 \u0432\u0441\u0451 \u0435\u0441\u0442\u044C \u0432 \u043B\u0438\u0447\u043D\u043E\u043C \u043A\u0430\u0431\u0438\u043D\u0435\u0442\u0435 \u043C\u0430\u0440\u043A\u0435\u0442\u043F\u043B\u0435\u0439\u0441\u0430?",
12
+ response: /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement("b", null, "\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u0438\u043C\u0438 \u043A\u0430\u043D\u0430\u043B\u0430\u043C\u0438 \u043F\u0440\u043E\u0434\u0430\u0436 \u0438\u0437 \u043E\u0434\u043D\u043E\u0433\u043E \u043C\u0435\u0441\u0442\u0430"), /*#__PURE__*/_react["default"].createElement("br", null), "\u0415\u0441\u043B\u0438 \u0442\u044B \u0442\u043E\u0440\u0433\u0443\u0435\u0448\u044C \u043D\u0430 2-\u0445 \u0438 \u0431\u043E\u043B\u0435\u0435 \u043C\u0430\u0440\u043A\u0435\u0442\u043F\u043B\u0435\u0439\u0441\u0430\u0445, \u0442\u043E \u043D\u0430 ECOMRU \u0443\u043F\u0440\u0430\u0432\u043B\u044F\u0442\u044C \u0432\u0441\u0435\u043C\u0438 \u0441\u0432\u043E\u0438\u043C\u0438 \u043C\u0430\u0433\u0430\u0437\u0438\u043D\u0430\u043C\u0438 \u0442\u044B \u043C\u043E\u0436\u0435\u0448\u044C \u0441 \u043E\u0434\u043D\u043E\u0433\u043E \u044D\u043A\u0440\u0430\u043D\u0430, \u044D\u0442\u043E \u044D\u043A\u043E\u043D\u043E\u043C\u0438\u0442 \u0432\u0440\u0435\u043C\u044F \u0438 \u0443\u043F\u0440\u043E\u0449\u0430\u0435\u0442 \u0440\u0430\u0431\u043E\u0442\u0443.", /*#__PURE__*/_react["default"].createElement("br", null), /*#__PURE__*/_react["default"].createElement("br", null), /*#__PURE__*/_react["default"].createElement("b", null, "\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u0440\u0435\u043A\u043B\u0430\u043C\u043E\u0439 \u0438 \u043C\u0430\u0440\u043A\u0435\u0442\u0438\u043D\u0433\u043E\u043C"), /*#__PURE__*/_react["default"].createElement("br", null), "ECOMRU \u0438\u043C\u0435\u0435\u0442 \u0431\u043E\u043B\u0435\u0435 \u0448\u0438\u0440\u043E\u043A\u0438\u0439 \u0444\u0443\u043D\u043A\u0446\u0438\u043E\u043D\u0430\u043B \u0434\u043B\u044F \u0441\u043E\u0437\u0434\u0430\u043D\u0438\u044F, \u043E\u043F\u0442\u0438\u043C\u0438\u0437\u0430\u0446\u0438\u0438 \u0438 \u0430\u043D\u0430\u043B\u0438\u0437\u0430 \u0440\u0435\u043A\u043B\u0430\u043C\u044B \u043D\u0430 \u043C\u0430\u0440\u043A\u0435\u0442\u043F\u043B\u0435\u0439\u0441\u0430\u0445, \u0447\u0442\u043E \u043F\u043E\u043C\u043E\u0433\u0430\u0435\u0442 \u0443\u0432\u0435\u043B\u0438\u0447\u0438\u0442\u044C \u0435\u0451 \u044D\u0444\u0444\u0435\u043A\u0442\u0438\u0432\u043D\u043E\u0441\u0442\u044C \u0438 \u0443\u043C\u0435\u043D\u044C\u0448\u0438\u0442\u044C \u0440\u0430\u0441\u0445\u043E\u0434\u044B \u043D\u0430 \u043C\u0430\u0440\u043A\u0435\u0442\u0438\u043D\u0433.", /*#__PURE__*/_react["default"].createElement("br", null), /*#__PURE__*/_react["default"].createElement("br", null), /*#__PURE__*/_react["default"].createElement("b", null, "\u0410\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u044F"), /*#__PURE__*/_react["default"].createElement("br", null), "ECOMRU \u043F\u043E\u043C\u043E\u0433\u0430\u0435\u0442 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0437\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043C\u043D\u043E\u0433\u0438\u0435 \u0440\u0443\u0442\u0438\u043D\u043D\u044B\u0435 \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u044B, \u043D\u0430\u043F\u0440\u0438\u043C\u0435\u0440 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u0446\u0435\u043D, \u043E\u0441\u0442\u0430\u0442\u043A\u043E\u0432 \u043D\u0430 \u0441\u043A\u043B\u0430\u0434\u0430\u0445, \u043E\u0442\u0432\u0435\u0442\u044B \u043D\u0430 \u043E\u0442\u0437\u044B\u0432\u044B, \u043F\u0440\u0438\u0451\u043C \u0437\u0430\u043A\u0430\u0437\u043E\u0432 \u0438 \u043F\u0440\u043E\u0447\u0435\u0435. \u042D\u0442\u043E \u0437\u043D\u0430\u0447\u0438\u0442\u0435\u043B\u044C\u043D\u043E \u044D\u043A\u043E\u043D\u043E\u043C\u0438\u0442 \u0442\u0432\u043E\u0451 \u0432\u0440\u0435\u043C\u044F \u0438 \u0441\u043D\u0438\u0436\u0430\u0435\u0442 \u0432\u0435\u0440\u043E\u044F\u0442\u043D\u043E\u0441\u0442\u044C \u043E\u0448\u0438\u0431\u043E\u043A.", /*#__PURE__*/_react["default"].createElement("br", null), /*#__PURE__*/_react["default"].createElement("br", null), /*#__PURE__*/_react["default"].createElement("b", null, "\u041F\u0440\u043E\u0434\u0432\u0438\u043D\u0443\u0442\u044B\u0435 \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E\u0441\u0442\u0438 \u0438 \u0448\u0438\u0440\u043E\u043A\u0438\u0439 \u0444\u0443\u043D\u043A\u0446\u0438\u043E\u043D\u0430\u043B"), /*#__PURE__*/_react["default"].createElement("br", null), "\u041F\u0440\u0438 \u043F\u043E\u043C\u043E\u0449\u0438 ECOMRU \u0442\u044B \u043C\u043E\u0436\u0435\u0448\u044C \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E \u0430\u043D\u0430\u043B\u0438\u0437\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043F\u0440\u043E\u0434\u0430\u0436\u0438, \u0438\u0441\u043A\u0430\u0442\u044C \u043D\u043E\u0432\u044B\u0435 \u043D\u0438\u0448\u0438 \u0434\u043B\u044F \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u0438\u044F \u0431\u0438\u0437\u043D\u0435\u0441\u0430, \u0443\u043F\u0440\u0430\u0432\u043B\u044F\u0442\u044C \u0431\u044E\u0434\u0436\u0435\u0442\u043E\u043C, \u0440\u0430\u0441\u043F\u0440\u0435\u0434\u0435\u043B\u044F\u0442\u044C \u0437\u0430\u0434\u0430\u0447\u0438 \u043C\u0435\u0436\u0434\u0443 \u0441\u043E\u0442\u0440\u0443\u0434\u043D\u0438\u043A\u0430\u043C\u0438 \u0438 \u043C\u043D\u043E\u0433\u043E \u0447\u0435\u0433\u043E \u0435\u0449\u0451..", /*#__PURE__*/_react["default"].createElement("br", null), /*#__PURE__*/_react["default"].createElement("br", null), /*#__PURE__*/_react["default"].createElement("b", null, "\u0426\u0435\u043D\u0442\u0440\u0430\u043B\u0438\u0437\u043E\u0432\u0430\u043D\u043D\u043E\u0435 \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u0431\u0438\u0437\u043D\u0435\u0441\u043E\u043C"), /*#__PURE__*/_react["default"].createElement("br", null), "\u041D\u0430 ECOMRU \u0432\u0441\u0435 \u0434\u0430\u043D\u043D\u044B\u0435 \u0445\u0440\u0430\u043D\u044F\u0442\u0441\u044F \u0432 \u0440\u0430\u043C\u043A\u0430\u0445 \u0435\u0434\u0438\u043D\u043E\u0439 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u044B, \u044D\u0442\u043E \u043F\u043E\u043C\u043E\u0433\u0430\u0435\u0442 \u0442\u0435\u0431\u0435 \u044D\u0444\u0444\u0435\u043A\u0442\u0438\u0432\u043D\u0435\u0435 \u0443\u043F\u0440\u0430\u0432\u043B\u044F\u0442\u044C \u0431\u0438\u0437\u043D\u0435\u0441\u043E\u043C, \u043E\u0441\u043E\u0431\u0435\u043D\u043D\u043E \u0435\u0441\u043B\u0438 \u0443 \u0442\u0435\u0431\u044F \u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u043E \u043A\u0430\u043D\u0430\u043B\u043E\u0432 \u043F\u0440\u043E\u0434\u0430\u0436..", /*#__PURE__*/_react["default"].createElement("br", null), /*#__PURE__*/_react["default"].createElement("br", null))
13
+ }, {
14
+ questions: "\u041C\u043E\u0436\u043D\u043E \u043B\u0438 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C\u0441\u044F \u0441\u0435\u0440\u0432\u0438\u0441\u0430\u043C\u0438 \u043F\u043E \u043E\u0442\u0434\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u0438?",
15
+ response: "\u0414\u0430, \u0432\u0441\u0435 \u0441\u0435\u0440\u0432\u0438\u0441\u044B ECOMRU \u0430\u0432\u0442\u043E\u043D\u043E\u043C\u043D\u044B \u0438 \u0438\u0445 \u043C\u043E\u0436\u043D\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \n \u043F\u043E \u043E\u0442\u0434\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u0438 \u0432 \u0442\u043E\u0439 \u0441\u0444\u0435\u0440\u0435, \u0434\u043B\u044F \u043A\u043E\u0442\u043E\u0440\u043E\u0439 \u043E\u043D\u0438 \u043F\u0440\u0435\u0434\u043D\u0430\u0437\u043D\u0430\u0447\u0435\u043D\u044B. \u041D\u043E \u0441\u0442\u043E\u0438\u0442 \n \u043E\u0442\u043C\u0435\u0442\u0438\u0442\u044C, \u0447\u0442\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u0435 \u0432\u0441\u0435\u0445 \u0441\u0435\u0440\u0432\u0438\u0441\u043E\u0432 \u0432\u043C\u0435\u0441\u0442\u0435 \u043F\u043E\u043C\u043E\u0436\u0435\u0442 \u0442\u0435\u0431\u0435 \u0431\u043E\u043B\u0435\u0435 \n \u044D\u0444\u0444\u0435\u043A\u0442\u0438\u0432\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u044F\u0442\u044C \u043F\u0440\u043E\u0434\u0430\u0436\u0430\u043C\u0438 \u0438 \u043F\u043E\u0432\u044B\u0441\u0438\u0442 \u043F\u0440\u043E\u0434\u0443\u043A\u0442\u0438\u0432\u043D\u043E\u0441\u0442\u044C \n \u0431\u0438\u0437\u043D\u0435\u0441\u0430, \u0437\u0430 \u0441\u0447\u0451\u0442 \u043A\u043E\u043C\u043F\u043B\u0435\u043A\u0441\u043D\u043E\u0433\u043E \u043F\u043E\u0434\u0445\u043E\u0434\u0430 \u043A \u0440\u0430\u0431\u043E\u0442\u0435."
16
+ }, {
17
+ questions: "\u0414\u043B\u044F \u0447\u0435\u0433\u043E \u043D\u0443\u0436\u0435\u043D \u0441\u0435\u0440\u0432\u0438\u0441 \u0430\u043D\u0430\u043B\u0438\u0442\u0438\u043A\u0438 \u043C\u0430\u0440\u043A\u0435\u0442\u043F\u043B\u0435\u0439\u0441\u043E\u0432?",
18
+ response: "\u0421\u0435\u0440\u0432\u0438\u0441 \u0430\u043D\u0430\u043B\u0438\u0442\u0438\u043A\u0438 \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C \u0434\u043B\u044F \u0441\u0435\u043B\u043B\u0435\u0440\u043E\u0432, \u0442\u0430\u043A \n \u043A\u0430\u043A \u043E\u043D \u043E\u0431\u0435\u0441\u043F\u0435\u0447\u0438\u0432\u0430\u0435\u0442 \u0441\u0432\u043E\u0435\u0432\u0440\u0435\u043C\u0435\u043D\u043D\u044B\u043C\u0438 \u0438 \u0442\u043E\u0447\u043D\u044B\u043C\u0438 \u0434\u0430\u043D\u043D\u044B\u043C\u0438 \u043E \n \u043F\u0440\u043E\u0434\u0430\u0436\u0430\u0445, \u0446\u0435\u043D\u0430\u0445, \u0437\u0430\u043A\u0430\u0437\u0430\u0445 \u0438 \u0432\u043E\u0437\u0432\u0440\u0430\u0442\u0430\u0445, \u0440\u0435\u043A\u043B\u0430\u043C\u0435, \u043A\u043E\u043D\u043A\u0443\u0440\u0435\u043D\u0442\u0430\u0445, \u0437\u0430\u043F\u0430\u0441\u0430\u0445 \u043D\u0430 \u0441\u043A\u043B\u0430\u0434\u0430\u0445, \n \u043E\u0442\u0437\u044B\u0432\u0430\u0445 \u0438 \u043E \u043C\u043D\u043E\u0433\u043E\u043C \u0434\u0440\u0443\u0433\u043E\u043C. \u042D\u0442\u043E \u043F\u043E\u043C\u043E\u0433\u0430\u0435\u0442 \u043F\u0440\u0438\u043D\u0438\u043C\u0430\u0442\u044C \n \u043E\u0431\u043E\u0441\u043D\u043E\u0432\u0430\u043D\u043D\u044B\u0435 \u0440\u0435\u0448\u0435\u043D\u0438\u044F \u0438 \u043E\u043F\u0442\u0438\u043C\u0438\u0437\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0431\u0438\u0437\u043D\u0435\u0441-\u043F\u0440\u043E\u0446\u0435\u0441\u0441\u044B."
19
+ }, {
20
+ questions: "\u0421\u043B\u043E\u0436\u043D\u043E \u043B\u0438 \u0440\u0430\u0437\u043E\u0431\u0440\u0430\u0442\u044C\u0441\u044F \u0441 \u0444\u0443\u043D\u043A\u0446\u0438\u043E\u043D\u0430\u043B\u043E\u043C \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u044B?",
21
+ response: "\u041D\u0435\u0442, \u043C\u044B \u0441\u043E\u0437\u0434\u0430\u043B\u0438 \u0438\u043D\u0442\u0443\u0438\u0442\u0438\u0432\u043D\u043E \u043F\u043E\u043D\u044F\u0442\u043D\u044B\u0439 \u0438\u043D\u0442\u0435\u0440\u0444\u0435\u0439\u0441, \u0431\u043B\u0430\u0433\u043E\u0434\u0430\u0440\u044F \n \u043A\u043E\u0442\u043E\u0440\u043E\u043C\u0443 \u0442\u044B \u0441\u043C\u043E\u0436\u0435\u0448\u044C \u0431\u044B\u0441\u0442\u0440\u043E \u0440\u0430\u0437\u043E\u0431\u0440\u0430\u0442\u044C\u0441\u044F \u0438 \u043E\u0441\u0432\u043E\u0438\u0448\u044C \u0432\u0441\u0435 \u0444\u0443\u043D\u043A\u0446\u0438\u0438 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u044B. \n \u0422\u0430\u043A\u0436\u0435 \u0443 \u0442\u0435\u0431\u044F \u0432\u0441\u0435\u0433\u0434\u0430 \u0435\u0441\u0442\u044C \u0434\u043E\u0441\u0442\u0443\u043F \u043A \u043D\u0430\u0448\u0435\u0439 \u0411\u0430\u0437\u0435 \u0437\u043D\u0430\u043D\u0438\u0439, \u0432 \u043A\u043E\u0442\u043E\u0440\u043E\u0439 \u043C\u044B \n \u0441\u043E\u0431\u0440\u0430\u043B\u0438 \u0442\u0435\u043A\u0441\u0442\u043E\u0432\u044B\u0435 \u0438 \u0432\u0438\u0434\u0435\u043E\u0438\u043D\u0441\u0442\u0440\u0443\u043A\u0446\u0438\u0438 \u043F\u043E \u043A\u0430\u0436\u0434\u043E\u043C\u0443 \u0441\u0435\u0440\u0432\u0438\u0441\u0443. \u041D\u0443, \u0430 \u0435\u0441\u043B\u0438 \n \u0443 \u0442\u0435\u0431\u044F \u0432\u043E\u0437\u043D\u0438\u043A\u043D\u0443\u0442 \u0442\u0440\u0443\u0434\u043D\u043E\u0441\u0442\u0438 \u0438\u043B\u0438 \u0432\u043E\u043F\u0440\u043E\u0441\u044B, \u0442\u043E \u0442\u044B \u0441\u043C\u043E\u0436\u0435\u0448\u044C \u043E\u0431\u0440\u0430\u0442\u0438\u0442\u044C\u0441\u044F \u0432 \n \u043D\u0430\u0448\u0443 \u0441\u043B\u0443\u0436\u0431\u0443 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u043A\u0438, \u043A\u043E\u0442\u043E\u0440\u0430\u044F \u043D\u0430 \u0441\u0432\u044F\u0437\u0438 \u043A\u0440\u0443\u0433\u043B\u043E\u0441\u0443\u0442\u043E\u0447\u043D\u043E \u0438 \u0432\u0441\u0435\u0433\u0434\u0430 \u043F\u043E\u043C\u043E\u0436\u0435\u0442 \u0442\u0435\u0431\u0435."
22
+ }, {
23
+ questions: "\u0421\u043A\u043E\u043B\u044C\u043A\u043E \u0447\u0435\u043B\u043E\u0432\u0435\u043A \u044F \u043C\u043E\u0433\u0443 \u0434\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043D\u0430 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0443?",
24
+ response: /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, "\u0423 \u043D\u0430\u0441 \u043D\u0435\u0442 \u043B\u0438\u043C\u0438\u0442\u043E\u0432 \u043D\u0430 \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u043F\u043E\u0434\u043A\u043B\u044E\u0447\u0435\u043D\u0438\u0439 \u043A \u0441\u0435\u0440\u0432\u0438\u0441\u0443. \u0422\u044B \u043C\u043E\u0436\u0435\u0448\u044C \u0434\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0441\u0442\u043E\u043B\u044C\u043A\u043E \u0441\u043E\u0442\u0440\u0443\u0434\u043D\u0438\u043A\u043E\u0432, \u0441\u043A\u043E\u043B\u044C\u043A\u043E \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E.")
25
+ }, {
26
+ questions: "\u0412 \u0447\u0451\u043C \u043F\u0440\u0435\u0438\u043C\u0443\u0449\u0435\u0441\u0442\u0432\u043E ECOMRU?",
27
+ response: "\u041D\u0430\u0448\u0430 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0430 \u044D\u0442\u043E \u0446\u0435\u043B\u044B\u0439 \u0441\u0431\u043E\u0440\u043D\u0438\u043A \u043F\u043E\u043B\u0435\u0437\u043D\u044B\u0445 \n \u0438\u043D\u0441\u0442\u0440\u0443\u043C\u0435\u043D\u0442\u043E\u0432 \u0434\u043B\u044F \u0431\u0438\u0437\u043D\u0435\u0441\u0430. \u041F\u043E\u043C\u0438\u043C\u043E \u0441\u043F\u0435\u0446\u0438\u0430\u043B\u044C\u043D\u044B\u0445 \u0441\u0435\u0440\u0432\u0438\u0441\u043E\u0432 \n \u0434\u043B\u044F \u0440\u0430\u0431\u043E\u0442\u044B \u043D\u0430 \u043C\u0430\u0440\u043A\u0435\u0442\u043F\u043B\u0435\u0439\u0441\u0430\u0445, \u0443 \u043D\u0430\u0441 \u0442\u044B \u0435\u0449\u0451 \u043D\u0430\u0439\u0434\u0451\u0448\u044C \n \u0442\u0430\u0441\u043A-\u043C\u0435\u043D\u0435\u0434\u0436\u0435\u0440, Wiki, CRM \u0438 SMM \u0438\u043D\u0441\u0442\u0440\u0443\u043C\u0435\u043D\u0442\u044B, \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \n \u043F\u043E\u043C\u043E\u0433\u0443\u0442 \u0442\u0435\u0431\u0435 \u043E\u043F\u0442\u0438\u043C\u0438\u0437\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0431\u0438\u0437\u043D\u0435\u0441 \u0438 \u043F\u043E\u0432\u044B\u0441\u0438\u0442\u044C \n \u044D\u0444\u0444\u0435\u043A\u0442\u0438\u0432\u043D\u043E\u0441\u0442\u044C \u0440\u0430\u0431\u043E\u0442\u044B \u0441\u0432\u043E\u0435\u0439 \u043A\u043E\u043C\u0430\u043D\u0434\u044B."
28
+ }, {
29
+ questions: "\u041C\u043E\u0436\u043D\u043E \u043B\u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u043F\u0435\u0440\u0435\u043D\u0435\u0441\u0442\u0438 \u0441\u0432\u043E\u0438 \u0434\u0430\u043D\u043D\u044B\u0435 \u0432 ECOMRU \u0438\u0437 \u0434\u0440\u0443\u0433\u0438\u0445 \u0441\u0435\u0440\u0432\u0438\u0441\u043E\u0432?",
30
+ response: /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, "\u0414\u0430, \u043C\u044B \u043C\u043E\u0436\u0435\u043C \u0432 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u043F\u0435\u0440\u0435\u0431\u0440\u043E\u0441\u0438\u0442\u044C \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u044B\u0435 \u0434\u0430\u043D\u043D\u044B\u0435 \u043D\u0430 \u043D\u0430\u0448\u0443 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0443. \u0414\u043B\u044F \u044D\u0442\u043E\u0433\u043E \u0441\u0432\u044F\u0436\u0438\u0441\u044C \u0441 \u043D\u0430\u043C\u0438 \u043F\u043E \u044D\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u043E\u0439 \u043F\u043E\u0447\u0442\u0435 ", /*#__PURE__*/_react["default"].createElement("a", {
31
+ style: {
32
+ textDecoration: 'underline'
33
+ },
34
+ href: "mailto:info@ecomru.ru"
35
+ }, "info@ecomru.ru"))
36
+ }, {
37
+ questions: "\u041C\u043E\u0436\u043D\u043E \u043B\u0438 \u0438\u043D\u0442\u0435\u0433\u0440\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0441\u0435\u0440\u0432\u0438\u0441\u044B \u0441 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u044B ECOMRU \u0432 \u043C\u043E\u044E \u0441\u0438\u0441\u0442\u0435\u043C\u0443?",
38
+ response: /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, "\u0414\u0430, \u043C\u044B \u043C\u043E\u0436\u0435\u043C \u0438\u043D\u0442\u0435\u0433\u0440\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043D\u0430\u0448\u0438 \u0438\u043D\u0441\u0442\u0440\u0443\u043C\u0435\u043D\u0442\u044B \u0432 \u0442\u0432\u043E\u044E \u0441\u0438\u0441\u0442\u0435\u043C\u0443. \u0412\u0441\u0435 \u0443\u0441\u043B\u043E\u0432\u0438\u044F \u0438 \u043D\u044E\u0430\u043D\u0441\u044B \u043E\u0431\u0441\u0443\u0436\u0434\u0430\u044E\u0442\u0441\u044F \u0438\u043D\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043B\u044C\u043D\u043E. \u0415\u0441\u043B\u0438 \u0445\u043E\u0447\u0435\u0448\u044C \u0443\u0437\u043D\u0430\u0442\u044C \u043F\u043E\u0434\u0440\u043E\u0431\u043D\u0435\u0435, \u043F\u0438\u0448\u0438 \u043D\u0430\u043C \u043D\u0430 \u043F\u043E\u0447\u0442\u0443 ", /*#__PURE__*/_react["default"].createElement("a", {
39
+ style: {
40
+ textDecoration: 'underline'
41
+ },
42
+ href: "mailto:info@ecomru.ru"
43
+ }, "info@ecomru.ru"))
44
+ }, {
45
+ questions: "\u041C\u043E\u0436\u043D\u043E \u043B\u0438 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C\u0441\u044F \u0441\u0435\u0440\u0432\u0438\u0441\u043E\u043C \u0441 \u0442\u0435\u043B\u0435\u0444\u043E\u043D\u0430?",
46
+ response: "\u0414\u0430, \u0441\u0435\u0440\u0432\u0438\u0441 \u043C\u043E\u0436\u043D\u043E \u043E\u0442\u043A\u0440\u044B\u0432\u0430\u0442\u044C \u043A\u0430\u043A \u043D\u0430 \u041F\u041A, \u0442\u0430\u043A \u0438 \u043D\u0430 \u043C\u043E\u0431\u0438\u043B\u044C\u043D\u044B\u0445 \u0443\u0441\u0442\u0440\u043E\u0439\u0441\u0442\u0432\u0430\u0445."
47
+ }];
48
+ var _default = exports["default"] = {
49
+ title: 'Questions',
50
+ component: _Questions["default"]
51
+ };
52
+ var QuestionsTest = exports.QuestionsTest = function QuestionsTest() {
53
+ return /*#__PURE__*/_react["default"].createElement(_Questions["default"], {
54
+ title: "\u0427\u0430\u0441\u0442\u043E \u0437\u0430\u0434\u0430\u0432\u0430\u0435\u043C\u044B\u0435 \u0432\u043E\u043F\u0440\u043E\u0441\u044B",
55
+ list: questions_list
56
+ });
57
+ };
@@ -0,0 +1,5 @@
1
+ <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="bx-chevron-down.svg">
3
+ <path id="Vector" d="M19.0085 10.8438L14 15.8523L8.99146 10.8438L7.3418 12.4934L14 19.1516L20.6581 12.4934L19.0085 10.8438Z" fill="black"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="bx-chevron-down.svg">
3
+ <path id="Vector" d="M8.99154 17.1563L14 12.1478L19.0085 17.1563L20.6582 15.5066L14 8.84842L7.34187 15.5066L8.99154 17.1563Z" fill="black"/>
4
+ </g>
5
+ </svg>