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

Sandwiches

Italian Beef
Cheesy Beef
Italian Sausage
Homemade Meatballs
Combination
Breaded Steak
Chicken Parmigiana
Fish Sandwich
Hamburger
Cheeseburger
Jumbo Burger
Philly Cheese Steak
Gumbo Gym-Shoe Sandwich

7.69
8.69
6.99
9.99
8.99
10.99
10.99
4.99
3.99
4.99
5.99
14.99
14.99

Extras

Cheese

Peppers (hot or sweet)

In A Cup

1.00
0.75
0.75

Try Our Fresh Ciabatta Bread

**Sandwiches served with choice of one chesse;
Provolone, Swiss, American, One bread: Focaccia, 

Paninni, Ciabatta. Includes lettuce, tomato, red onion, olive oil.

 

*These sandwiches served with Cottage Fries

Grilled Chicken Sandwich

Marinated Chicken Breast w/ tomatoes,

and provolone cheese

 

Grilled Steak Sandwich

With Red Onions

 

Turkey Panini

Sliced Turkey

 

Ham Panini

Sliced Hame w/White Cheddar Cheese

 

Italian Sub

Salami, Capicola, Ham and Provolone Cheese

9.99

 

9.99

 

9.99

 

9.99

 

9.99

** 8 inch

Damenzo's Special

Capicolla Mortadella, Genoa Salami

 

Italian

Ham, Mortadella, Hard Salami

 

American

Ham, Turkey, Hard Salami

 

Prosciutto

Fresh Mozzarella, Basil, Roasted Red Peppers & Our Oil Dressing

Roast Beef

Corned Beef

Pastami

Turkey

9.99

 

9.99

 

9.99

 

9.99

9.99

9.99

9.99

9.99

bottom of page