top of page

Let's be honest here... who doesn't love Mac n Cheese however you won't believe all the hidden veggies used to make the sauce. 

 

Also comes with:

  • Fruit
  • Veggie sticks
  • Brownie slice

 

Contact us if you wish to pick a specific start date. Otherwise your LLL lunch pack with arrive in the next delivery cycle. 

Mac n Cheese Lunch Pack (EF, V)

$14.99Price
  • Although we ensure the highest possible standard of food safety and quality control, we do understand that issues may happen from time to time given we are dealing with perishable food  and delivery matters that are sometimes outside of our control.

     

    If your LLL delivery is not up to the high standard that we aim to deliver please let us know asap (within 24 hr of delivery) by sending photos and brief description of the issue to lillyslittlelunchbox@outlook.com 

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