top of page
Search
Writer's pictureCara Aprile

Our Values



Currently, the nutrition status of children in Australia varies, but there are concerns about certain aspects. While Australia generally has a high standard of living and access to a variety of foods, there are still challenges in ensuring all children have access to nutritious meals. Issues such as food insecurity, inadequate intake of fruits and vegetables, and overconsumption of processed foods contribute to concerns about the overall nutrition status of children in some communities.


This is where we come in!


Lilly’s Little Lunchbox is more than just a home meal delivery service, we are dedicated to promoting nutritious eating habits among Australian children. We believe that instilling these habits early on fosters lifelong health and wellbeing. By providing delicious, wholesome meals and snacks tailored to young tastes, we aim to empower our younger and future generations with the knowledge and enjoyment of nourishing foods, ensuring they grow up with a strong foundation for healthy living.



Cara Aprile

Founder

19 views0 comments

Recent Posts

See All

Comments


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