top of page
Search
Writer's pictureCara Aprile

What is your family eating throughout the day?

There are many benefits to eating healthy throughout the day.

If you think your children could benefit from some support & encouragement with their healthy eating habits, then Lilly's Little Lunchbox is your solution.


Incorporating the 5 core food groups into every meal, you can rest assured that your children will be well on their way to reach their recommended daily intake of fruits & vegetables, along with a variety of vitamins & minerals to help them achieve optimal health all while exposing them to 'new' foods and establishing lifelong healthy eating habits.

23 views0 comments

Recent Posts

See All

Comentarios


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