Personalise your
meal kit

Get excited - your choice of 40+ weekly meals is just a step away!

FAQs

const faq = document.querySelectorAll('.faq-question'); for(let i = 0; i < faq.length; i++) { faq[i].addEventListener("click", function() { let answer=this.nextElementSibling; answer.classList.toggle('hidden'); }) }