// server.js const express = require('express'); const bodyParser = require('body-parser'); const app = express(); const PORT = process.env.PORT || 5000; // Middleware app.use(bodyParser.json()); // Routes app.get('/api/restaurants', (req, res) => { // Logic to fetch list of restaurants from database res.json(restaurants); }); app.post('/api/orders', (req, res) => { const { customerId, items } = req.body; // Logic to process order and save it to database res.json({ success: true, message: 'Order placed successfully' }); }); // Start server app.listen(PORT, () => { console.log(`Server is running on port ${PORT}`); });
top of page

Catering Trays

Lasagna
Mostaccioli
Eggplant
Italian Beef
Italian Sausage
Meatballs
Damenzo's Salad
Buffalo Wings
Rib Tips
Chicken Vesuvio
w/ potatoes
Bread

25-30

30-35

30-35

30-35

30-35

30-35

30-35

30-35

30-35

30-35

Serves

Per Tray

95.00
75.00
95.00
99.00
75.00
75.00
50.00
99.00
79.00
95.00

15.00

bottom of page