top of page

Meal Packs & Smoothies

View our menu here

DF - Dairy free options, EF - Egg free options, GF - Gluten free options, V - Vegetarian options

​

Our meals packs contain a main meal, seasonal mixed fruit, veggie sticks & a treat.

​

Please note, it is a minimum of 2 week's delivery for subscription orders. If you prefer to order on an adhoc basis, please add individual products to your cart. Select carefully.

​

Lilly's Little Lunchbox is a premium, pre-made delivery service selecting the highest quality produce, fruits and vegetables that are in season. Due to high volumes, we are unable to accommodate requests for certain fruits & vegetables. 

Trial Pack

Subscription Packs

One time purchase lunch packs

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' })); }