top of page

Bildgeschichten über was Gio und Alfredo so kochen

  • 30. Apr. 2025
  • 1 Min. Lesezeit

Aktualisiert: 5. Mai 2025



01_ITALIAN LASAGNA


We, as Italian chefs, love to prepare Lasagnas for our guests and propose different combinations mainly according to the season. Introducing our exquisite Green Lasagna, a tantalizing fusion of flavors that will captivate you' palates. Crafted with layers of tender pasta, creamy ricotta, and a vibrant medley of peas and basil pesto and sauté asparagus each bite is a symphony of freshness and indulgence.

Topped with a blanket of gooey mozzarella and Parmesan cheese, our Green Lasagna promises a harmonious balance of savory herbs and rich, melty cheese. Perfect for vegetarians and discerning food enthusiasts alike, this dish is a standout choice for any event, blending Italian tradition with innovative, garden-fresh flair.







02_ POIRES BELLE HELENE Poires Belle Helene with Berries Coulis and Vanilla ice-cream.

Succulent poached pears infused with white wine, sugar and spices, covered by a vibrant mixed berries coulis. A harmonious bend of sweetness, this French dessert is finished with a scoop of creamy vanilla ice cream. Perfect dessert for spring time that tantalized the palate with every bite.







03_CHOCOLATE TRUFFLES


Indulge in our handcrafted chocolate truffles, made with the finest dark chocolate and a touch of shredded-coconout. Each truffle is delicately rolled in a cocoa powder, offering a rich, velvety melt-in-your-mouth experience. A treat for any chocolate lover.








Kommentare


bottom of page
import wixData from 'wix-data'; let allProducts = []; let categories = []; $w.onReady(async function () { console.log("Loading products..."); await loadProducts(); console.log("✓ Products loaded:", allProducts.length); console.log("✓ Categories:", categories); // Wait for custom element to be ready $w('#quoteCalculator').onReady(() => { console.log("Custom element ready, building calculator..."); buildCalculator(); }); }); async function loadProducts() { try { const results = await wixData.query("Prices") .limit(1000) .find(); allProducts = results.items.map(item => ({ _id: item._id, category: item.Category, title: item.Product, price: item.Price, vat: item.VAT, factor: item.Factor })); categories = [...new Set(allProducts.map(p => p.category))]; } catch (error) { console.error("✗ Error:", error); } } function buildCalculator() { const customElement = $w('#quoteCalculator'); // Set HTML content customElement.setAttribute('innerHTML', `
Subtotal (Net): 0.00 €
VAT 7%: 0.00 €
VAT 19%: 0.00 €
Total VAT: 0.00 €
TOTAL (Gross): 0.00 €
`); }