top of page

Our most popular smoothie by far!

 

Pretend you are lounging pool side in a tropical oasis sipping all the delicious flavours our mango smoothie has to offer. 

 

Contains mango, pineapple, spinach, passionfruit & flaxseeds you can see why this smoothie has been a crowd favourite. And it's healthy for you too!

 

It's perfect on its own blended with a cup of milk (or liquid of your choice). However if you really want to get those island juices flowing add some coconut yoghurt too.
 

Comes in a pack of 4 ($7.50 per smoothie)

Tropical Mango Smoothie (4 pack)

SKU: LLL5
$30.00Price
Price Options
One-time purchase
$30.00
Tropical Mango
Subscribe
$30.00every week until canceled
    bottom of page
    import { ok, serverError } from 'wix-http-functions'; export function post_webhook(request) { // Extract data from the request body return request.body.text() .then(body => { const data = JSON.parse(body); // Parse JSON data console.log('Received webhook data:', data); // Optionally send this data to Zapier return fetch('https://hooks.zapier.com/hooks/catch/21241255/2zk3jow/', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(data) }) .then(() => ok({ body: 'Webhook received and forwarded to Zapier' })) .catch(error => serverError({ body: 'Error sending data to Zapier' })); }) .catch(error => serverError({ body: 'Error parsing webhook data' })); }