|
| 1 | +/* eslint-disable */ |
| 2 | +import React from "react"; |
| 3 | +import { Meta } from "../components/Meta"; |
| 4 | + |
| 5 | +const ServicesPage: React.FC = () => { |
| 6 | + return ( |
| 7 | + <> |
| 8 | + <Meta title="Services - E-Commerce Ninjas" /> |
| 9 | + <div className="services-container"> |
| 10 | + <div className="image-container"> |
| 11 | + <p className="service-header"> |
| 12 | + Welcome to e-Commerce Ninjas <br /> |
| 13 | + Customer Services |
| 14 | + </p> |
| 15 | + <p> |
| 16 | + What would you like help with today? <br /> You can quickly take |
| 17 | + care of most things here, <br /> or connect with us when needed. |
| 18 | + </p> |
| 19 | + </div> |
| 20 | + <div className="services-cards"> |
| 21 | + <div className="cards"> |
| 22 | + <div className="icon"> |
| 23 | + <img |
| 24 | + src="https://res.cloudinary.com/djrmfg6k9/image/upload/v1723834911/Process_1_uqwerq.png" |
| 25 | + alt="" |
| 26 | + /> |
| 27 | + </div> |
| 28 | + <p className="card-header">Simplified process</p> |
| 29 | + <p> |
| 30 | + e-Commerce-Ninjas.com reviews your claim directly, saving you time |
| 31 | + spent negotiating with suppliers*. |
| 32 | + </p> |
| 33 | + </div> |
| 34 | + <div className="cards"> |
| 35 | + <div className="icon"> |
| 36 | + <img |
| 37 | + src="https://res.cloudinary.com/djrmfg6k9/image/upload/v1723834911/Hangar_1_tzoydr.png" |
| 38 | + alt="" |
| 39 | + /> |
| 40 | + </div> |
| 41 | + <p className="card-header">Inventory management</p> |
| 42 | + <p> |
| 43 | + Better plan out and manage inventory knowing orders will be |
| 44 | + delivered on time. |
| 45 | + </p> |
| 46 | + </div> |
| 47 | + <div className="cards"> |
| 48 | + <div className="icon"> |
| 49 | + <img |
| 50 | + src="https://res.cloudinary.com/djrmfg6k9/image/upload/v1723834911/Transaction_1_mkwskd.png" |
| 51 | + alt="" |
| 52 | + /> |
| 53 | + </div> |
| 54 | + <p className="card-header">Compensation for delays</p> |
| 55 | + <p> |
| 56 | + If late delivery occurs, receive a coupon which can be used for |
| 57 | + future purchases. |
| 58 | + </p> |
| 59 | + </div> |
| 60 | + <div className="cards"> |
| 61 | + <div className="icon"> |
| 62 | + <img |
| 63 | + src="https://res.cloudinary.com/djrmfg6k9/image/upload/v1723834910/Coin_in_Hand_1_gno7gh.png" |
| 64 | + alt="" |
| 65 | + /> |
| 66 | + </div> |
| 67 | + <p className="card-header">Transparent rates</p> |
| 68 | + <p>Get competitive pricing and check rates in real-time.</p> |
| 69 | + </div> |
| 70 | + <div className="cards"> |
| 71 | + <div className="icon"> |
| 72 | + <img |
| 73 | + src="https://res.cloudinary.com/djrmfg6k9/image/upload/v1723834910/Earth_Planet_1_uzxsfr.png" |
| 74 | + alt="" |
| 75 | + /> |
| 76 | + </div> |
| 77 | + <p className="card-header">Worldwide coverage</p> |
| 78 | + <p> |
| 79 | + Enjoy tracked delivery to most countries and regions around the |
| 80 | + world. |
| 81 | + </p> |
| 82 | + </div> |
| 83 | + <div className="cards"> |
| 84 | + <div className="icon"> |
| 85 | + <img |
| 86 | + src="https://res.cloudinary.com/djrmfg6k9/image/upload/v1723834910/Financial_Success_1_qb4kuu.png" |
| 87 | + alt="" |
| 88 | + /> |
| 89 | + </div> |
| 90 | + <p className="card-header">Tailored solutions</p> |
| 91 | + <p> |
| 92 | + Choose from door-to-door and port- to-port services according to |
| 93 | + your needs and budget. |
| 94 | + </p> |
| 95 | + </div> |
| 96 | + <div className="cards"> |
| 97 | + <div className="icon"> |
| 98 | + <img |
| 99 | + src="https://res.cloudinary.com/djrmfg6k9/image/upload/v1723834910/Security_Shield_1_gxwapg.png" |
| 100 | + alt="" |
| 101 | + /> |
| 102 | + </div> |
| 103 | + <p className="card-header">Security & Privacy</p> |
| 104 | + <p> |
| 105 | + e-Commerce-Ninjas.com reviews your claim directly, saving you time |
| 106 | + spent negotiating with suppliers*. |
| 107 | + </p> |
| 108 | + </div> |
| 109 | + <div className="cards"> |
| 110 | + <div className="icon"> |
| 111 | + <img |
| 112 | + src="https://res.cloudinary.com/djrmfg6k9/image/upload/v1723834910/Web_Accessibility_1_n8fof9.png" |
| 113 | + alt="" |
| 114 | + /> |
| 115 | + </div> |
| 116 | + <p className="card-header">Accessibility</p> |
| 117 | + <p> |
| 118 | + Better plan out and manage inventory knowing orders will be |
| 119 | + delivered on time. |
| 120 | + </p> |
| 121 | + </div> |
| 122 | + <div className="cards"> |
| 123 | + <div className="icon"> |
| 124 | + <img |
| 125 | + src="https://res.cloudinary.com/djrmfg6k9/image/upload/v1723834910/Customer_Support_1_gott5j.png" |
| 126 | + alt="" |
| 127 | + /> |
| 128 | + </div> |
| 129 | + <p className="card-header">Resolution support</p> |
| 130 | + <p> |
| 131 | + If there's a problem with your refund, we will help mediate to get |
| 132 | + your money back. |
| 133 | + </p> |
| 134 | + </div> |
| 135 | + </div> |
| 136 | + </div> |
| 137 | + </> |
| 138 | + ); |
| 139 | +}; |
| 140 | + |
| 141 | +export default ServicesPage; |
0 commit comments