top of page

The perfect little snack to enjoy between meals giving you the burst of energy you need. 

 

Contains 5 mixed flavoured muffins. 

 

All lunchbox meals have been specifically desgined for children with health & nutrition at the forefront of our mind without compromising on quality, taste & deliciousness. 

 

Packaged in environmentally friendly packaging so your children can reuse. 

Mixed Mini Muffins (5 pack)

$12.50Price
Price Options
One-time purchase
$12.50
Baked Goods
Subscribe
$12.50every 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' })); }