| 1 |
const docsData = [ |
| 2 |
{ |
| 3 |
title: 'Getting Started', |
| 4 |
doc_category_id: 42, |
| 5 |
icon: require('../../../asset/img/icons/Getting-started3.svg'), |
| 6 |
color: 'bg-green-50 border-green-200', |
| 7 |
items: [], |
| 8 |
}, |
| 9 |
{ |
| 10 |
title: 'Product Intent Discounts', |
| 11 |
doc_category_id: 43, |
| 12 |
icon: require('../../../asset/img/icons/Product.svg'), |
| 13 |
color: 'bg-orange-50 border-orange-200', |
| 14 |
items: [], |
| 15 |
}, |
| 16 |
{ |
| 17 |
title: 'Cart-Intent Discounts', |
| 18 |
doc_category_id: 44, |
| 19 |
icon: require('../../../asset/img/icons/Cart.svg'), |
| 20 |
color: 'bg-red-50 border-red-200', |
| 21 |
items: [], |
| 22 |
}, |
| 23 |
{ |
| 24 |
title: 'Free Shipping Discount', |
| 25 |
doc_category_id: 45, |
| 26 |
icon: require('../../../asset/img/icons/Free-shipping.svg'), |
| 27 |
color: 'bg-blue-50 border-blue-200', |
| 28 |
items: [], |
| 29 |
}, |
| 30 |
{ |
| 31 |
title: 'Bulk Intent Discount', |
| 32 |
doc_category_id: 46, |
| 33 |
icon: require('../../../asset/img/icons/Bulk2.svg'), |
| 34 |
color: 'bg-yellow-50 border-yellow-200', |
| 35 |
items: [], |
| 36 |
}, |
| 37 |
{ |
| 38 |
title: 'Bundle Discount', |
| 39 |
doc_category_id: 47, |
| 40 |
icon: require('../../../asset/img/icons/Bundle.svg'), |
| 41 |
color: 'bg-purple-50 border-purple-200', |
| 42 |
items: [], |
| 43 |
}, |
| 44 |
{ |
| 45 |
title: 'Campaign Setup', |
| 46 |
doc_category_id: 48, |
| 47 |
icon: require('../../../asset/img/icons/Setup.svg'), |
| 48 |
color: 'bg-amber-50 border-amber-200', |
| 49 |
items: [], |
| 50 |
}, |
| 51 |
{ |
| 52 |
title: 'Ticket Solutions', |
| 53 |
doc_category_id: 54, |
| 54 |
icon: require('../../../asset/img/icons/fi_1981421.svg'), |
| 55 |
color: 'bg-amber-50 border-amber-200', |
| 56 |
items: [], |
| 57 |
}, |
| 58 |
{ |
| 59 |
title: 'Conditions', |
| 60 |
doc_category_id: 50, |
| 61 |
icon: require('../../../asset/img/icons/discount-condition.svg'), |
| 62 |
color: 'bg-amber-50 border-amber-200', |
| 63 |
items: [], |
| 64 |
}, |
| 65 |
{ |
| 66 |
title: 'Campaign Display', |
| 67 |
doc_category_id: 58, |
| 68 |
icon: require('../../../asset/img/icons/display-icon.svg'), |
| 69 |
color: 'bg-amber-50 border-amber-200', |
| 70 |
items: [], |
| 71 |
}, |
| 72 |
{ |
| 73 |
title: 'BOGO', |
| 74 |
doc_category_id: 55, |
| 75 |
icon: require('../../../asset/img/icons/BOGO.svg'), |
| 76 |
color: 'bg-amber-50 border-amber-200', |
| 77 |
items: [], |
| 78 |
}, |
| 79 |
{ |
| 80 |
title: 'Compatible Plugins', |
| 81 |
doc_category_id: 61, |
| 82 |
icon: require('../../../asset/img/icons/Compatible.svg'), |
| 83 |
color: 'bg-amber-50 border-amber-200', |
| 84 |
items: [], |
| 85 |
}, |
| 86 |
{ |
| 87 |
title: 'Settings', |
| 88 |
doc_category_id: 62, |
| 89 |
icon: require('../../../asset/img/icons/Settings.svg'), |
| 90 |
color: 'bg-amber-50 border-amber-200', |
| 91 |
items: [], |
| 92 |
}, |
| 93 |
]; |
| 94 |
|
| 95 |
export default docsData; |
| 96 |
|