@lancom/shared 0.0.199 → 0.0.201

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 (63) hide show
  1. package/assets/js/api/admin.js +2 -2
  2. package/assets/js/api/index.js +11 -8
  3. package/assets/js/utils/filters.js +4 -6
  4. package/components/checkout/cart/cart_entities_group/cart-entities-group.vue +3 -3
  5. package/components/checkout/cart/cart_entities_group/cart_entities_group_prints/cart_entities_group_print/cart-entities-group-print.vue +3 -3
  6. package/components/checkout/cart/cart_entities_group_table/cart_entities_group_tr/cart-entities-group-tr.vue +3 -3
  7. package/components/checkout/cart/cart_entity/cart-entity.vue +2 -2
  8. package/components/checkout/cart/cart_entity/cart_entity_color_simple_products/cart-entity-color-simple-products.vue +1 -1
  9. package/components/checkout/cart/cart_entity/cart_entity_color_simple_products/cart_entity_color_simple_product/cart-entity-color-simple-product.vue +1 -1
  10. package/components/checkout/cart/cart_entity/cart_entity_prints/cart_entity_print/cart-entity-print.vue +3 -3
  11. package/components/checkout/cart/cart_shipments_pricing/cart-shipments-pricing.vue +2 -2
  12. package/components/checkout/order/order-shipping-method/order-shipping-method.vue +1 -1
  13. package/components/common/coupon_select/coupon-select.vue +3 -3
  14. package/components/common/price.vue +1 -1
  15. package/components/common/pricing_discounts_table/pricing-discounts-table.vue +2 -2
  16. package/components/common/products_total_pricing/products-total-pricing.vue +6 -6
  17. package/components/common/single-item-price.vue +1 -1
  18. package/components/design/approve_design_header/approve-design-header.vue +1 -1
  19. package/components/editor/editor_pricing/editor-pricing.vue +5 -5
  20. package/components/editor/editor_pricing/editor_pricing_details/editor_pricing_details_prints/editor-pricing-details-prints.vue +5 -5
  21. package/components/editor/editor_pricing/editor_pricing_details/editor_pricing_details_products/editor-pricing-details-products.vue +3 -3
  22. package/components/editor/editor_print_area_options/editor_print_area_option/editor-print-area-option.vue +1 -1
  23. package/components/editor/editor_product_details/editor-product-details.vue +3 -2
  24. package/components/modals/order_modal/order-modal.vue +3 -1
  25. package/components/order/order_entity/order-entity.vue +1 -1
  26. package/components/order/order_price/order-price.vue +7 -7
  27. package/components/order/order_prints_groups/order-prints-groups.vue +4 -4
  28. package/components/order/order_products_groups/order-products-groups.vue +8 -8
  29. package/components/order/order_products_groups/order_products_group/order-products-group.vue +4 -4
  30. package/components/order/order_refund_view/order-refund-view.vue +3 -3
  31. package/components/order/order_setup_groups/order-setup-groups.vue +5 -5
  32. package/components/order/order_sku_groups/order-sku-groups.vue +4 -4
  33. package/components/order/order_view/order-view.vue +9 -8
  34. package/components/order/order_view/order_product_color_simple_products/order-product-color-simple-products.mixin.js +4 -0
  35. package/components/order/order_view/order_product_color_simple_products/order-product-color-simple-products.vue +1 -1
  36. package/components/order/order_view/order_product_prints/order-product-prints.vue +5 -0
  37. package/components/order/order_view/order_product_prints/order_product_print/order-product-print.vue +7 -3
  38. package/components/order/order_view/order_view_product/order-view-product.vue +7 -1
  39. package/components/pricing/pricing_digital_printing/pricing-digital-printing.vue +6 -6
  40. package/components/pricing/pricing_example/pricing-example.vue +6 -6
  41. package/components/pricing/pricing_products_calculator/pricing_product_calculator/pricing-product-calculator.vue +2 -2
  42. package/components/pricing/pricing_screen_printing/pricing-screen-printing.vue +8 -8
  43. package/components/product/product_price_range/product-price-range.vue +4 -4
  44. package/components/product/product_prints_price_info/product_print_price_info/product_print_price_info_item/product-print-price-info-item.vue +2 -2
  45. package/components/products/product_list_product/product-list-product.vue +2 -2
  46. package/components/quotes/quote_view/quote_option_view/quote-option-view.vue +6 -6
  47. package/components/quotes/quote_view/quote_product_color_simple_products/quote-product-color-simple-products.vue +2 -2
  48. package/components/quotes/quote_view/quote_product_prints/quote_product_print/quote-product-print.vue +3 -3
  49. package/components/quotes/quote_view/quote_view_product/quote-view-product.vue +1 -1
  50. package/nuxt.config.js +11 -1
  51. package/package.json +1 -1
  52. package/pages/order/_token/index.vue +45 -0
  53. package/pages/order/_token/invoice/_invoice.vue +57 -0
  54. package/pages/order/_token/payment/index.vue +43 -0
  55. package/pages/order/_token/payment/invoice/_invoice.vue +53 -0
  56. package/pages/order/_token/refund/_refund.vue +50 -0
  57. package/plugins/global-components.js +7 -0
  58. package/routes/index.js +28 -0
  59. package/store/cart.js +1 -0
  60. package/store/index.js +6 -2
  61. package/store/product.js +6 -4
  62. package/components/common/logo/logo.scss +0 -16
  63. package/components/common/logo/logo.vue +0 -30
@@ -0,0 +1,57 @@
1
+ <template>
2
+ <div class="OrderViewPage__wrapper">
3
+ <div :class="isFullScreen ? '' : 'content-inner'">
4
+ <order-view
5
+ :order="order"
6
+ :invoice="invoice"
7
+ :responsive="!isFullScreen" />
8
+ </div>
9
+ </div>
10
+ </template>
11
+
12
+ <script>
13
+ import metaInfo from '@lancom/shared/mixins/meta-info';
14
+ import api from '@lancom/shared/assets/js/api';
15
+
16
+ export default {
17
+ name: 'OrderInvoiceViewPage',
18
+ components: {
19
+ OrderView: () => import('@lancom/shared/components/order/order_view/order-view')
20
+ },
21
+ mixins: [metaInfo],
22
+ layout: 'empty',
23
+ async asyncData({ params, error }) {
24
+ try {
25
+ const order = await api.fetchOrderByToken(params.token, { invoiceProducts: true, mergePrints: true });
26
+ const invoice = order.subsequentInvoices.find(i => [i._id, i.guid].includes(params.invoice));
27
+ if (!invoice) {
28
+ return error({
29
+ statusCode: 404,
30
+ error: 'Invoice not found'
31
+ });
32
+ }
33
+ return { order, invoice };
34
+ } catch (e) {
35
+ const { status, data } = e?.response || {};
36
+ const statusCode = status || 500;
37
+ error({
38
+ statusCode,
39
+ error: data?.error || 'Order not found'
40
+ });
41
+ }
42
+ },
43
+ data() {
44
+ return {
45
+ order: null,
46
+ invoice: null,
47
+ isFullScreen: this.$route.query.print
48
+ };
49
+ },
50
+ mounted() {
51
+ console.log(this.invoice);
52
+ }
53
+ };
54
+ </script>
55
+
56
+ <style lang="scss">
57
+ </style>
@@ -0,0 +1,43 @@
1
+ <template>
2
+ <div class="OrderPaymentPage__wrapper">
3
+ <div class="content-inner">
4
+ <client-only>
5
+ <order-payment :order="order" />
6
+ </client-only>
7
+ </div>
8
+ </div>
9
+ </template>
10
+
11
+ <script>
12
+ import metaInfo from '@lancom/shared/mixins/meta-info';
13
+ import api from '@lancom/shared/assets/js/api';
14
+
15
+ export default {
16
+ name: 'OrderPaymentPage',
17
+ components: {
18
+ OrderPayment: () => import('@lancom/shared/components/order/order_payment/order-payment')
19
+ },
20
+ mixins: [metaInfo],
21
+ async asyncData({ params, error }) {
22
+ try {
23
+ const order = await api.fetchOrderByToken(params.token);
24
+ return { order };
25
+ } catch (e) {
26
+ const { status, data } = e?.response || {};
27
+ const statusCode = status || 500;
28
+ error({
29
+ statusCode,
30
+ error: data?.error || 'Order not found'
31
+ });
32
+ }
33
+ },
34
+ data() {
35
+ return {
36
+ order: null
37
+ };
38
+ }
39
+ };
40
+ </script>
41
+
42
+ <style lang="scss">
43
+ </style>
@@ -0,0 +1,53 @@
1
+ <template>
2
+ <div class="OrderPaymentPage__wrapper">
3
+ <div class="content-inner">
4
+ <client-only>
5
+ <order-payment
6
+ :order="order"
7
+ :invoice="invoice" />
8
+ </client-only>
9
+ </div>
10
+ </div>
11
+ </template>
12
+
13
+ <script>
14
+ import metaInfo from '@lancom/shared/mixins/meta-info';
15
+ import api from '@lancom/shared/assets/js/api';
16
+
17
+ export default {
18
+ name: 'OrderPaymentInvoicePage',
19
+ components: {
20
+ OrderPayment: () => import('@lancom/shared/components/order/order_payment/order-payment')
21
+ },
22
+ mixins: [metaInfo],
23
+ async asyncData({ params, error }) {
24
+ try {
25
+ const order = await api.fetchOrderByToken(params.token);
26
+ const invoice = order.subsequentInvoices.find(i => [i._id, i.guid].includes(params.invoice));
27
+ if (!invoice) {
28
+ return error({
29
+ statusCode: 404,
30
+ error: 'Invoice not found'
31
+ });
32
+ }
33
+ return { order, invoice };
34
+ } catch (e) {
35
+ const { status, data } = e?.response || {};
36
+ const statusCode = status || 500;
37
+ error({
38
+ statusCode,
39
+ error: data?.error || 'Order not found'
40
+ });
41
+ }
42
+ },
43
+ data() {
44
+ return {
45
+ order: null,
46
+ invoice: null
47
+ };
48
+ }
49
+ };
50
+ </script>
51
+
52
+ <style lang="scss">
53
+ </style>
@@ -0,0 +1,50 @@
1
+ <template>
2
+ <div class="OrderViewPage__wrapper">
3
+ <div :class="isFullScreen ? '' : 'content-inner'">
4
+ <order-refund-view
5
+ :order="order"
6
+ :refund="refund"
7
+ :responsive="!isFullScreen" />
8
+ </div>
9
+ </div>
10
+ </template>
11
+
12
+ <script>
13
+ import metaInfo from '@lancom/shared/mixins/meta-info';
14
+ import api from '@lancom/shared/assets/js/api';
15
+
16
+ export default {
17
+ name: 'OrderRefundViewPage',
18
+ components: {
19
+ OrderRefundView: () => import('@lancom/shared/components/order/order_refund_view/order-refund-view')
20
+ },
21
+ mixins: [metaInfo],
22
+ layout: 'empty',
23
+ async asyncData({ params, error }) {
24
+ try {
25
+ const order = await api.fetchOrderByToken(params.token);
26
+ const refund = order.refunds.find(({ _id }) => _id === params.refund);
27
+ if (!refund) {
28
+ throw new Error('Refund not found');
29
+ }
30
+ return { order, refund };
31
+ } catch (e) {
32
+ const { status, data } = e?.response || {};
33
+ const statusCode = status || 500;
34
+ error({
35
+ statusCode,
36
+ error: data?.error || 'Refund not found'
37
+ });
38
+ }
39
+ },
40
+ data() {
41
+ return {
42
+ order: null,
43
+ isFullScreen: this.$route.query.print
44
+ };
45
+ }
46
+ };
47
+ </script>
48
+
49
+ <style lang="scss">
50
+ </style>
@@ -1,3 +1,4 @@
1
+ import { mapGetters } from 'vuex';
1
2
  import Vue from 'vue';
2
3
  import Btn from '@lancom/shared/components/common/btn';
3
4
  import Spinner from '@lancom/shared/components/common/spinner';
@@ -8,3 +9,9 @@ Vue.component('btn', Btn);
8
9
  Vue.component('spinner', Spinner);
9
10
  Vue.component('Checkbox', Checkbox);
10
11
  Vue.component('breakpoint', Breakpoint);
12
+
13
+ Vue.mixin({
14
+ computed: {
15
+ ...mapGetters(['currency', 'country'])
16
+ }
17
+ })
@@ -0,0 +1,28 @@
1
+ module.exports = function(routes, resolve) {
2
+ return [{
3
+ name: 'order-view',
4
+ path: '/order/:token',
5
+ component: resolve('@lancom/shared/pages/order/_token/index.vue'),
6
+ chunkName: 'pages/order/view'
7
+ }, {
8
+ name: 'order-payment',
9
+ path: '/order/:token/payment',
10
+ component: resolve('@lancom/shared/pages/order/_token/payment/index.vue'),
11
+ chunkName: 'pages/order/payment'
12
+ }, {
13
+ name: 'order-payment-invoice',
14
+ path: '/order/:token/payment/invoice/:invoice',
15
+ component: resolve('@lancom/shared/pages/order/_token/payment/invoice/_invoice.vue'),
16
+ chunkName: 'pages/order/payment/invoice'
17
+ }, {
18
+ name: 'order-view-invoice',
19
+ path: '/order/:token/invoice/:invoice',
20
+ component: resolve('@lancom/shared/pages/order/_token/invoice/_invoice.vue'),
21
+ chunkName: 'pages/order/view/invoice'
22
+ }, {
23
+ name: 'order-refund',
24
+ path: '/order/:token/refund/:refund',
25
+ component: resolve('@lancom/shared/pages/order/_token/refund/_refund.vue'),
26
+ chunkName: 'pages/order/view/refund'
27
+ }];
28
+ }
package/store/cart.js CHANGED
@@ -224,6 +224,7 @@ export const mutations = {
224
224
  };
225
225
 
226
226
  function generateCalculatePriceData(entities, suburb, suppliersWithRates, coupon, selectedSuppliersWithRates) {
227
+ console.log('entities: ', entities);
227
228
  const getSimpleObj = i => i && ({ _id: i._id, name: i.name });
228
229
  return {
229
230
  entities: entities.map(({ _id, guid, prints, simpleProducts, product }) => ({
package/store/index.js CHANGED
@@ -62,12 +62,16 @@ export const actions = {
62
62
  }
63
63
  } catch (e) {}
64
64
  },
65
- async loadState({ dispatch, commit, state: { shop, notificationBar } }) {
65
+ async loadState({ dispatch, commit, state: { shop, currency, country, notificationBar } }) {
66
66
  const state = await loadState();
67
67
  if (state) {
68
68
  commit('setState', state);
69
69
  if (state.cart?.id) {
70
- const cart = await api.fetchCartById(shop._id, state.cart?.id);
70
+ const params = {
71
+ currency: currency?._id,
72
+ country: country?._id
73
+ };
74
+ const cart = await api.fetchCartById(shop._id, state.cart?.id, params);
71
75
  commit('cart/setCart', cart);
72
76
  if (state.cart?.coupon) {
73
77
  try {
package/store/product.js CHANGED
@@ -146,10 +146,11 @@ export const getters = {
146
146
  };
147
147
 
148
148
  export const actions = {
149
- async fetchProduct({ commit }, { shop, slug, print }) {
149
+ async fetchProduct({ commit }, { shop, slug, print, country, currency }) {
150
150
  try {
151
151
  commit('setLoadError', null);
152
- const product = await api.fetchProduct(shop, slug);
152
+ const query = { country, currency };
153
+ const product = await api.fetchProduct(shop, slug, query);
153
154
  commit('setProduct', product);
154
155
  commit('setPreSetPrint', (product.prints || []).find(({ _id }) => _id === print));
155
156
 
@@ -167,8 +168,9 @@ export const actions = {
167
168
  });
168
169
  }
169
170
  },
170
- async fetchProductDetails({ commit, state }, { shop, slug, defaultColor = 'white' }) {
171
- const response = await api.fetchProductDetails(shop, slug);
171
+ async fetchProductDetails({ commit, state }, { shop, slug, country, currency, defaultColor = 'white' }) {
172
+ const params = { country, currency };
173
+ const response = await api.fetchProductDetails(shop, slug, params);
172
174
  commit('setProductDetails', response);
173
175
 
174
176
  const catalogFrontColorId = getColorOfDefaultCatalogFrontImage(state.product);
@@ -1,16 +0,0 @@
1
- @import "@/assets/scss/variables";
2
-
3
- svg {
4
- circle {
5
- transform: rotateX(0deg);
6
- transition: transform .5s;
7
- }
8
- &:hover {
9
- circle {
10
- transform: rotateX(90deg);
11
- }
12
- .green-letter {
13
- fill: $purple;
14
- }
15
- }
16
- }
@@ -1,30 +0,0 @@
1
- <template>
2
- <svg
3
- width="183"
4
- height="41"
5
- viewBox="0 0 183 41"
6
- fill="none"
7
- xmlns="http://www.w3.org/2000/svg">
8
- <defs>
9
- <clipPath id="cut-off-bottom">
10
- <circle cx="20" cy="20" r="30" />
11
- </clipPath>
12
- </defs>
13
- <path class="green-letter" d="M59.9271 13.5459L59.6934 14.8161L59.4353 14.8952C58.9642 14.5821 58.4531 14.336 57.9161 14.1637C57.407 14.0014 56.877 13.9165 56.3434 13.9116C55.6782 13.8949 55.0202 14.0551 54.4347 14.3762C53.9199 14.6525 53.4889 15.066 53.1882 15.5723C52.9169 16.0185 52.7689 16.5307 52.7598 17.055C52.7549 17.5739 52.9269 18.0786 53.2467 18.4834C53.5684 18.8954 53.959 19.2468 54.4006 19.5214C54.9997 19.89 55.6209 20.2202 56.2607 20.5099C57.1468 20.9975 57.8723 21.4061 58.4371 21.7356C59.0095 22.1004 59.5058 22.5756 59.8979 23.1344C60.3046 23.7445 60.5123 24.4689 60.4919 25.2053C60.4951 26.0234 60.2652 26.825 59.8297 27.5134C59.3741 28.2417 58.7263 28.8256 57.96 29.1988C57.1174 29.6212 56.1875 29.833 55.2479 29.8167C54.5109 29.8138 53.7774 29.7124 53.0665 29.5152C52.3453 29.3369 51.6556 29.0468 51.0215 28.6552L51.1773 27.2614L51.3575 27.1823C51.9273 27.6891 52.5888 28.0785 53.3051 28.329C53.9623 28.5726 54.6554 28.7013 55.355 28.7095C56.0526 28.7201 56.7414 28.55 57.3562 28.2153C57.8969 27.9263 58.3535 27.4986 58.6806 26.9747C58.9908 26.4975 59.1598 25.9401 59.1675 25.3684C59.175 24.8219 59.0037 24.2882 58.6806 23.851C58.3614 23.4231 57.9648 23.0607 57.512 22.7834C57.0543 22.5034 56.4181 22.1607 55.6033 21.7554C54.8562 21.3992 54.128 21.0032 53.422 20.5692C52.8663 20.2161 52.3889 19.7499 52.0197 19.2001C51.6288 18.5984 51.4299 17.8892 51.45 17.1687C51.4433 16.3791 51.6633 15.6046 52.083 14.9396C52.5137 14.2534 53.1194 13.6984 53.8358 13.3333C54.657 12.9267 55.5614 12.7234 56.4749 12.7402C57.6691 12.7552 58.8463 13.0299 59.9271 13.5459Z" fill="#38C88D" />
14
- <path class="green-letter" d="M67.9807 24.5134L68.0343 29.708H66.6807L66.7586 24.5924L66.6807 12.8391H68.0586L67.9807 24.5134Z" fill="#38C88D" />
15
- <path class="green-letter" d="M91.6447 29.708H90.3982L89.9551 24.5677L88.9423 15.2313H88.7865L83.7226 27.6667H82.5005L77.6314 15.2214H77.4756L76.4628 24.4788L75.9759 29.6981H74.7781L76.5504 12.8391H78.0842L79.0191 15.4241L83.0994 25.838H83.2357L87.5498 15.2115L88.4311 12.8391H89.9648L91.6447 29.708Z" fill="#38C88D" />
16
- <path class="green-letter" d="M106.422 14.0847C107.269 14.92 107.698 16.1111 107.698 17.6581C107.698 19.4869 107.182 20.9153 106.15 21.9433C105.117 22.9713 103.668 23.4854 101.801 23.4854H99.6687V24.5134L99.7223 29.708H98.3687L98.4466 24.5925L98.3687 12.8392L102.785 12.8145C104.359 12.8309 105.572 13.2543 106.422 14.0847ZM105.356 20.9004C106.036 20.0042 106.381 18.8921 106.33 17.7619C106.364 17.2593 106.298 16.7548 106.135 16.279C105.972 15.8032 105.715 15.366 105.38 14.9941C104.626 14.3176 103.644 13.9634 102.639 14.0056L99.7563 14.06L99.7077 22.2843L102.59 22.3387C103.662 22.2468 104.656 21.7301 105.356 20.9004Z" fill="#38C88D" />
17
- <path class="green-letter" d="M121.643 28.6799L121.487 29.708H113.721L113.799 24.5924L113.721 12.8391H115.099L115.021 24.4936L115.075 28.502H121.516L121.643 28.6799Z" fill="#38C88D" />
18
- <path class="green-letter" d="M135.593 28.6255L135.462 29.708H126.697L126.775 24.5924L126.707 12.8391H135.437L135.54 12.9973L135.384 14.0797L131.488 14.0253H128.08L128.031 20.4259H131.274H134.054L134.162 20.5593L134.03 21.6368H128.031V24.5134L128.085 28.5218L131.435 28.5465L135.515 28.4674L135.593 28.6255Z" fill="#38C88D" />
19
- <path d="M156.009 12.9429L155.785 15.6069L152.645 15.4488H151.608L151.476 24.2564L151.647 29.6437H148.112L148.297 24.5826L148.165 15.4587H147.128L143.934 15.6168L143.7 15.3252L143.934 12.6661H155.785L156.009 12.9429Z" fill="#343750" />
20
- <path d="M168.815 26.6782L169.024 26.9649L168.791 29.6437H158.298L158.478 24.5826L158.298 12.6661H168.893L169.102 12.9528L168.839 15.6168L164.842 15.4834L161.828 15.513L161.75 19.6005L164.633 19.6499L167.359 19.5708L167.569 19.8377L167.335 22.4968L164.375 22.4177L161.696 22.4474L161.672 24.2663L161.75 26.8215L164.672 26.8512L168.815 26.6782Z" fill="#343750" />
21
- <path d="M182.035 26.6782L182.244 26.9649L182.01 29.6437H171.517L171.697 24.5826L171.517 12.6661H182.113L182.322 12.9528L182.078 15.6069L178.076 15.4735L175.062 15.5031L174.984 19.5906L177.867 19.64L180.598 19.561L180.803 19.8279L180.569 22.4869L177.609 22.4079L174.935 22.4375L174.906 24.2564L174.984 26.8117L177.906 26.8413L182.035 26.6782Z" fill="#343750" />
22
- <path d="M20.1415 39.7264C16.1147 39.7264 9.80434 39.2322 9.74104 39.2322C9.54682 39.2157 9.36667 39.1227 9.23924 38.973C9.1118 38.8233 9.04723 38.6289 9.05937 38.4315C9.05937 38.3425 9.62418 29.6091 9.54628 24.0685C9.51706 21.7801 9.36125 18.7355 9.23465 16.541L8.98633 17.0353C8.93517 17.1378 8.86166 17.2271 8.77138 17.2965C8.6811 17.3659 8.57644 17.4134 8.46533 17.4356H8.31926C8.1406 17.4359 7.9678 17.371 7.83235 17.2527C6.82443 16.3622 5.75361 15.5478 4.62848 14.8161C3.59266 14.2497 2.52068 13.7544 1.41973 13.3333C1.31928 13.2957 1.22806 13.2365 1.15235 13.1596C1.07665 13.0828 1.01827 12.9902 0.981234 12.8882C0.944203 12.7863 0.929404 12.6774 0.937858 12.5691C0.946313 12.4607 0.977819 12.3555 1.0302 12.2608L5.70455 3.65583C5.75571 3.56346 5.82554 3.48311 5.90945 3.42008C5.99337 3.35704 6.08948 3.31274 6.19146 3.29008L14.7027 1.26365C14.7576 1.2564 14.8133 1.2564 14.8682 1.26365C14.992 1.26384 15.114 1.29436 15.2237 1.35261C16.0758 1.84686 18.632 3.03307 20.1463 3.03307C21.6606 3.03307 24.212 1.82215 25.069 1.35261C25.1767 1.29381 25.2972 1.26323 25.4196 1.26365C25.4762 1.25636 25.5334 1.25636 25.59 1.26365L34.1012 3.29008C34.2034 3.31214 34.2998 3.35621 34.3838 3.4193C34.4678 3.4824 34.5374 3.56306 34.5881 3.65583L39.2673 12.2608C39.3186 12.3561 39.349 12.4615 39.3566 12.5698C39.3642 12.6781 39.3487 12.7868 39.3111 12.8885C39.2738 12.9894 39.2159 13.0812 39.1412 13.1578C39.0666 13.2345 38.9768 13.2943 38.8778 13.3333C37.7747 13.753 36.701 14.2484 35.6642 14.8161C34.5315 15.5562 33.4556 16.3824 32.4457 17.2873C32.3098 17.4048 32.1373 17.4696 31.9588 17.4702C31.9119 17.4753 31.8645 17.4753 31.8176 17.4702C31.7062 17.4488 31.6012 17.4015 31.5109 17.332C31.4205 17.2626 31.3472 17.1728 31.2966 17.0699L31.0483 16.5756C30.9168 18.7701 30.7659 21.8147 30.7318 24.1031C30.6587 29.6437 31.2187 38.3771 31.2187 38.4661C31.2308 38.6635 31.1663 38.8579 31.0388 39.0076C30.9114 39.1573 30.7312 39.2503 30.537 39.2668C30.4737 39.2223 24.1633 39.7264 20.1415 39.7264Z" fill="#7D6AEF" />
23
- <path clip-path="url(#cut-off-bottom)" d="M20.1415 39.7264C16.1147 39.7264 9.80434 39.2322 9.74104 39.2322C9.54682 39.2157 9.36667 39.1227 9.23924 38.973C9.1118 38.8233 9.04723 38.6289 9.05937 38.4315C9.05937 38.3425 9.62418 29.6091 9.54628 24.0685C9.51706 21.7801 9.36125 18.7355 9.23465 16.541L8.98633 17.0353C8.93517 17.1378 8.86166 17.2271 8.77138 17.2965C8.6811 17.3659 8.57644 17.4134 8.46533 17.4356H8.31926C8.1406 17.4359 7.9678 17.371 7.83235 17.2527C6.82443 16.3622 5.75361 15.5478 4.62848 14.8161C3.59266 14.2497 2.52068 13.7544 1.41973 13.3333C1.31928 13.2957 1.22806 13.2365 1.15235 13.1596C1.07665 13.0828 1.01827 12.9902 0.981234 12.8882C0.944203 12.7863 0.929404 12.6774 0.937858 12.5691C0.946313 12.4607 0.977819 12.3555 1.0302 12.2608L5.70455 3.65583C5.75571 3.56346 5.82554 3.48311 5.90945 3.42008C5.99337 3.35704 6.08948 3.31274 6.19146 3.29008L14.7027 1.26365C14.7576 1.2564 14.8133 1.2564 14.8682 1.26365C14.992 1.26384 15.114 1.29436 15.2237 1.35261C16.0758 1.84686 18.632 3.03307 20.1463 3.03307C21.6606 3.03307 24.212 1.82215 25.069 1.35261C25.1767 1.29381 25.2972 1.26323 25.4196 1.26365C25.4762 1.25636 25.5334 1.25636 25.59 1.26365L34.1012 3.29008C34.2034 3.31214 34.2998 3.35621 34.3838 3.4193C34.4678 3.4824 34.5374 3.56306 34.5881 3.65583L39.2673 12.2608C39.3186 12.3561 39.349 12.4615 39.3566 12.5698C39.3642 12.6781 39.3487 12.7868 39.3111 12.8885C39.2738 12.9894 39.2159 13.0812 39.1412 13.1578C39.0666 13.2345 38.9768 13.2943 38.8778 13.3333C37.7747 13.753 36.701 14.2484 35.6642 14.8161C34.5315 15.5562 33.4556 16.3824 32.4457 17.2873C32.3098 17.4048 32.1373 17.4696 31.9588 17.4702C31.9119 17.4753 31.8645 17.4753 31.8176 17.4702C31.7062 17.4488 31.6012 17.4015 31.5109 17.332C31.4205 17.2626 31.3472 17.1728 31.2966 17.0699L31.0483 16.5756C30.9168 18.7701 30.7659 21.8147 30.7318 24.1031C30.6587 29.6437 31.2187 38.3771 31.2187 38.4661C31.2308 38.6635 31.1663 38.8579 31.0388 39.0076C30.9114 39.1573 30.7312 39.2503 30.537 39.2668C30.4737 39.2223 24.1633 39.7264 20.1415 39.7264Z" fill="#38C88D" />
24
- <path d="M25.4149 2.02486L33.9261 4.0513L38.6004 12.6562C37.4617 13.0871 36.3524 13.594 35.2797 14.1736C34.1103 14.9315 32.9987 15.7774 31.9541 16.7042L30.4934 13.6695C30.4934 13.6695 30.0551 19.986 30.0064 24.0488C29.9334 29.6832 30.4934 38.4711 30.4934 38.4711C30.4934 38.4711 24.1976 38.9653 20.1562 38.9653C16.1149 38.9653 9.81424 38.4711 9.81424 38.4711C9.81424 38.4711 10.3839 29.6832 10.3012 24.0488C10.2476 19.9909 9.81424 13.6695 9.81424 13.6695L8.35351 16.7042C7.30997 15.7782 6.19999 14.9323 5.03278 14.1736C3.94911 13.5924 2.82833 13.0855 1.67796 12.6562L6.35717 4.0513L14.8635 2.02486C14.8635 2.02486 18.1015 3.79923 20.1416 3.79923C22.1818 3.79923 25.4149 2.02486 25.4149 2.02486ZM25.4149 0.5421C25.1687 0.541694 24.9262 0.602802 24.7088 0.720031C23.5841 1.33785 21.3443 2.31153 20.1416 2.31153C18.939 2.31153 16.6943 1.32302 15.5695 0.720031C15.3521 0.602802 15.1097 0.541694 14.8635 0.5421C14.7503 0.540596 14.6374 0.553886 14.5275 0.58164L6.01634 2.58336C5.81104 2.62859 5.61778 2.71824 5.44972 2.84618C5.28166 2.97412 5.14277 3.13736 5.04251 3.32474L0.377907 11.9297C0.27146 12.1181 0.207092 12.328 0.189354 12.5444C0.171616 12.7609 0.200942 12.9786 0.275259 13.1823C0.349575 13.386 0.467067 13.5706 0.619425 13.7231C0.771784 13.8756 0.955289 13.9923 1.15696 14.0649C2.21748 14.4694 3.25179 14.9416 4.25372 15.4784C5.34227 16.1869 6.37738 16.9766 7.35047 17.841C7.61928 18.0816 7.96588 18.2135 8.32429 18.2116C8.41179 18.219 8.49973 18.219 8.58723 18.2116C8.68948 20.1293 8.78686 22.3337 8.8112 24.0883C8.88424 29.5992 8.32429 38.308 8.32429 38.392C8.30837 38.5884 8.33118 38.786 8.39138 38.9734C8.45158 39.1607 8.54796 39.334 8.6749 39.4831C8.80183 39.6322 8.95677 39.7541 9.13066 39.8417C9.30455 39.9293 9.4939 39.9809 9.68764 39.9934C9.95058 39.9934 16.0905 40.4876 20.1465 40.4876C24.2025 40.4876 30.3424 39.9934 30.6005 39.9934C30.7942 39.9809 30.9836 39.9293 31.1575 39.8417C31.3313 39.7541 31.4863 39.6322 31.6132 39.4831C31.7402 39.334 31.8365 39.1607 31.8967 38.9734C31.9569 38.786 31.9797 38.5884 31.9638 38.392C31.9638 38.308 31.4039 29.5992 31.4769 24.0883C31.4769 22.3337 31.5986 20.1343 31.696 18.2116C31.7835 18.219 31.8715 18.219 31.959 18.2116C32.3169 18.2108 32.6626 18.0792 32.9328 17.841C33.8976 16.9769 34.9246 16.1872 36.0052 15.4784C37.0071 14.9416 38.0414 14.4694 39.1019 14.0649C39.3053 13.9944 39.4908 13.8793 39.6453 13.7277C39.7998 13.5761 39.9195 13.3918 39.9957 13.1878C40.072 12.9839 40.103 12.7654 40.0865 12.548C40.0701 12.3305 40.0065 12.1194 39.9005 11.9297L35.2261 3.32474C35.1241 3.13874 34.9847 2.9766 34.8169 2.84888C34.6492 2.72115 34.4568 2.63068 34.2523 2.58336L25.7801 0.56187C25.6685 0.534123 25.554 0.520837 25.4392 0.52233L25.4149 0.5421Z" fill="#343750" />
25
- </svg>
26
- </template>
27
-
28
- <style lang="scss" scoped>
29
- @import 'logo';
30
- </style>