+ {services.slice(0, 8).map((service) => {
+ const image = service.thumbnail || fallbackImage
+ const variant = service.variants?.[0]
+ const price = variant?.prices?.[0]
+ const amount = price ? (price.amount / 100).toFixed(2) : null
+ return (
+
+
+
+
+
+ {service.title}
+
+
+ {service.description}
+ {amount && (
+ From R{amount}
+ )}
+
+
+
+
+
+ )
+ })}
+