// 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

PIZZA

SAUSAGE - PEPPERONI - MUSHROOM - ONIONS - PEPPERS - OLIVES - SPINACH - FRESH BASIL - FRESH TOMATO - FRESH GARLIC - CHICKEN - ANCHOVIES - GROUND BEEF - ITALIAN BEEF

15.70
17.25
20.75
  1.85

PIZZA

31.50
36.00
42.00
  2.75

14"

12.45
13.70
17.95
  1.50

10.70
11.70
15.35
  1.25

18.45
20.45
25.20
  2.05

20.60
24.70
27.90
  2.30

10"

24"

12"

16"

18"

CHEESE

1 TOPPING

DAMENZO'S SPECIAL

EACH ADDT'L INGR

CHEESE

1 TOPPING

DAMENZO'S SPECIAL

EACH ADDT'L INGR

bottom of page