top of page

Our lids are designed to put on our containers when out and about so that you can easily reseal your food if you don't eat it all in the one go. 

 

Lids can be reused if well looked after. 

 

Our containers come sealed with a disposable film.

Lid for food tray

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