-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
366 lines (347 loc) · 14.7 KB
/
services.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pricing Plans</title>
<link rel="stylesheet" href="/css/style_services.css">
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" >
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark fixed-top sticky-top" style="height: 70px; background-color: #064635;">
<div class="container-fluid">
<a class="navbar-brand" href="/home"><h2>श्री Sahiram Caterers</h2></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse slide" id="navbarNavAltMarkup">
<div class="navbar-nav ms-auto"> <a class="nav-link" aria-current="page" href="/home" style="font-size: 16px; padding: 0 25px;">HOME</a>
<a class="nav-link" href="/about" style="font-size: 16px; padding: 0 25px;">ABOUT</a>
<a class="nav-link" href="/menu" style="font-size: 16px; padding: 0 25px;">MENU</a>
<a class="nav-link active" href="/services" style="font-size: 16px; padding: 0 25px;">SERVICES</a>
<a class="nav-link" href="/gallery" style="font-size: 16px; padding: 0 25px;">GALLERY</a>
<a class="nav-link" href="/contact" style="font-size: 16px; padding: 0 25px;">CONTACT</a>
</div>
</div>
</div>
</nav>
<div class="head">
<h1 id="s1">Our Catering Services</h1>
</div>
<div class="btns">
<button class="button" data-plan="daily" id="bt1">Birthday</button>
<button class="button active" data-plan="monthly">Wedding</button>
<button class="button" data-plan="annual">Corporate</button>
</div>
<div class="all_plans">
<div class="pricing-container monthly-plans">
<h2 style="color: #fff;">Family Celebrations Made Easy - Delicious Indian Feasts!</h2>
<div class="row text-center">
<div class="col-md-4 pricing-plan">
<h2>Cozy Comfort (₹ Budget-friendly)</h2>
<p>Ideal for intimate gatherings (10 guests).</p>
<ul>
<li>Selection of Indian finger foods & appetizers (Samosas, Spring Rolls, Paneer Tikka Bites etc.)</li>
<li>Mini bowls of Palak Paneer (spinach & cottage cheese gravy) served with rice or mini rotis</li>
</ul>
<p><b>Amount:- Rs. 500</b></p>
<form class="pay-form">
<input type="hidden" name="name" value="Basic Wedding Plan">
<input type="hidden" name="amount" value="500">
<input type="hidden" name="description" value="Booking a Basic wedding plan">
<input type="submit" value="Pay Now">
</form>
</div>
<div class="col-md-4 pricing-plan">
<h2>Festive Feast (₹ Moderate)</h2>
<p>Ideal for medium-sized celebrations (10-20 guests).</p>
<ul>
<li>Appetizer selection (from Cozy Comfort plan)</li>
<li>Choice of two Paneer gravies (e.g., Butter Paneer, Malai Kofta) served with rice or Indian breads (roti, naan)</li>
<li>Vegetable Pulao (aromatic rice dish with vegetables)</li>
<li>Raita (yogurt-based condiment)</li>
<li>Dessert platter with Gulab Jamun & fresh seasonal fruits</li>
</ul>
<p>₹ Price per person (min. 10 guests)</p>
<button>Get Offer</button>
</div>
<div class="col-md-4 pricing-plan">
<h2>Grand Gala (₹ Premium)</h2>
<p>Ideal for larger gatherings (20+ guests) or special occasions.</p>
<ul>
<li>Live Chaat counter (Pani Puri, Dahi Bhalla etc.) during cocktail hour</li>
<li>Selection of fun & colorful appetizers (variety from Cozy Comfort with additional options)</li>
<li>Live cooking station featuring Paneer gravies (Butter Paneer, Kadai Paneer, Palak Paneer etc.) with chefs preparing them fresh</li>
<li>Selection of Indian breads (roti, naan) and rice options</li>
<li>Dessert station (Jalebi, Barfi etc.) & ice cream sundae bar</li>
<li>Full-service catering staff</li>
</ul>
<p>₹ Price per person (Contact for Quote)</p>
<button>Get Quote</button>
</div>
</div>
</div>
<div class="pricing-container daily-plans" style="display: none;">
<h2>Birthday Party Packages (Veg Indian Cuisine)</h2>
<div class="row">
<div class="col-md-4 pricing-plan">
<h2>Fun & Finger Foods (₹ Budget-friendly)</h2>
<p>Ideal for 10-20 guests</p>
<ul>
<li>Selection of Indian finger foods & appetizers (Samosas, Spring Rolls, Paneer Tikka Bites etc.)</li>
<li>Mini bowls of Palak Paneer (spinach & cottage cheese gravy) served with rice or mini rotis</li>
</ul>
<p>₹ Price per person (min. 10 guests)</p>
<button>Get Started</button>
</div>
<div class="col-md-4 pricing-plan">
<h2>Celebration Delights (₹ Moderate)</h2>
<p>Ideal for 20-40 guests</p>
<ul>
<li>Appetizer selection (from Fun & Finger Foods plan)</li>
<li>Choice of two Paneer gravies (e.g., Butter Paneer, Malai Kofta) served with rice or Indian breads (roti, naan)</li>
<li>Vegetable Pulao (aromatic rice dish with vegetables)</li>
<li>Raita (yogurt-based condiment)</li>
<li>Dessert platter with Gulab Jamun & fresh seasonal fruits</li>
</ul>
<p>₹ Price per person (min. 20 guests)</p>
<button>Get Offer</button>
</div>
<div class="col-md-4 pricing-plan ">
<h2>Grand Masala Bash (₹ Premium)</h2>
<p>Ideal for 40+ guests (Formal/Large Events)</p>
<ul>
<li>Live Chaat counter (Pani Puri, Dahi Bhalla etc.) during cocktail hour</li>
<li>Selection of fun & colorful appetizers (variety from Fun & Finger Foods with additional options)</li>
<li>Live cooking station featuring Paneer gravies (Butter Paneer, Kadai Paneer, Palak Paneer etc.) with chefs preparing them fresh</li>
<li>Selection of Indian breads (roti, naan) and rice</li>
<li>Dessert station (Jalebi, Barfi etc.) & ice cream sundae bar</li>
<li>Full-service catering staff</li>
</ul>
<p>₹ Price per person (Contact for Quote)</p>
<button>Get Quote</button>
</div>
</div>
</div>
<div class="pricing-container annual-plans" style="display: none;">
<h2>Corporate Party Packages (Veg Indian Cuisine)</h2>
<div class="row">
<div class="col-md-4 pricing-plan">
<h2>Essentials (₹ Budget-friendly)</h2>
<p>Ideal for 20-40 guests</p>
<ul>
<li>Selection of Indian finger foods & appetizers (Samosas, Spring Rolls, Pakoras etc.)</li>
<li>Lassi (Sweet/Savory), Jal Jeera, Bottled Water</li>
</ul>
<p>₹ Price per person</p>
<button>Get Started</button>
</div>
<div class="col-md-4 pricing-plan">
<h2>Balanced Choice (₹ Moderate)</h2>
<p>Ideal for 40-80 guests</p>
<ul>
<li>Appetizer selection (from Essentials plan)</li>
<li>Two main course options (Veg Pulao, Matar Paneer, + Option to add another)</li>
<li>Selection of Indian breads (Roti, Naan)</li>
<li>Raita, Dessert platter (Gulab Jamun, Fruits)</li>
<li>Lassi, Aam Panna, Bottled Water, Coffee (Hot/Iced)</li>
</ul>
<p>₹ Price per person</p>
<button>Get Offer</button>
</div>
<div class="col-md-4 pricing-plan">
<h2>Executive Experience (₹ Premium)</h2>
<p>Ideal for 80+ guests (Formal/Large Events)</p>
<ul>
<li>Live Chaat counter (Pani Puri, Dahi Bhalla etc.) during cocktail hour</li>
<li>Buffet or plated options (Saag Paneer, Malai Kofta, Live Dosa station etc.)</li>
<li>Salad station with Indian-inspired dressings</li>
<li>Dessert station (Jalebi, Barfi etc.)</li>
<li>Lassi, Aam Panna, Bottled Water, Coffee (Hot/Iced), Herbal Teas</li>
<li>Full-service catering staff</li>
</ul>
<p>₹ Price per person (Contact for Quote)</p>
<button>Get Quote</button>
</div>
</div>
</div>
</div>
<div class="banner">
<div class="text-button-container">
<h2>Ready to book your Dream Event ?</h2>
<button onclick="location.href='contact.html'">Book Now</button>
</div>
</div>
<footer class="footer_section">
<div class="container">
<div class="row">
<div class="col-md-3 footer-col">
<div class="footer_detail" style="text-align: left;">
<a href="" class="footer-logo">
श्री Sahiram Caterers
</a>
<p>Shree Sahiram Caterers has been a trusted name in Dehradun, Uttarakhand, for exceptional vegetarian catering. We specialize in creating unforgettable culinary experiences for all your events, big or small.
</p>
</div>
</div>
<div class="col-md-3 footer-col">
<div class="footer_contact">
<h4>
Quick Links
</h4>
<div class="contact_link_box">
<a href="about.html">
<i class="fa fa-map-marker" aria-hidden="true"></i>
<button>
<span>
About Us
</span>
</button>
</a>
<a href="menu.html">
<i class="fa fa-phone" aria-hidden="true"></i>
<button>
<span>
Menu
</span>
</button>
</a>
<a href="services.html">
<i class="fa fa-envelope" aria-hidden="true"></i>
<button>
<span>
Services
</span>
</button>
</a>
</div>
</div>
</div>
<div class="col-md-3 footer-col">
<div class="footer_contact">
<h4>
Contact Us
</h4>
<div class="contact_link_box">
<a href="">
<a href="">
<i class="fa fa-phone" aria-hidden="true"></i>
<span>
+91 8755805704
</span>
</a>
<a href="">
<i class="fa fa-envelope" aria-hidden="true"></i>
<span>
</span>
</a>
</div>
</div>
</div>
<div class="col-md-3 footer-col">
<h4>
Opening Hours
</h4>
<p>
Everyday
</p>
<p>
10:00 AM -5:00 PM
</p>
</div>
</div>
<div class="footer-info">
<p>
© 2024 Shree Sahiram Caterers. All Rights Reserved.
</p>
</div>
</div>
</footer>
<div class="d-flex justify-content-center footer-copy">
<div class="content-asset">
<div class="copyright"></div>
</div>
</div>
<script>
const buttons = document.querySelectorAll('.button');
const monthlyPlans = document.querySelector('.monthly-plans');
const dailyPlans = document.querySelector('.daily-plans');
const annualPlans = document.querySelector('.annual-plans');
buttons.forEach(button => {
button.addEventListener('click', function() {
buttons.forEach(otherButton => otherButton.classList.remove('active'));
this.classList.add('active');
if (this.dataset.plan === 'monthly') {
monthlyPlans.style.display = 'block';
dailyPlans.style.display = 'none';
annualPlans.style.display = 'none';
document.body.style.backgroundImage = "url('home.webp')";
} else if (this.dataset.plan === 'daily') {
monthlyPlans.style.display = 'none';
dailyPlans.style.display = 'block';
annualPlans.style.display = 'none';
document.body.style.backgroundImage = "url('gam.webp')";
} else {
monthlyPlans.style.display = 'none';
dailyPlans.style.display = 'none';
annualPlans.style.display = 'block';
}
});
});
</script>
<script src="https://checkout.razorpay.com/v1/checkout.js"></script>
<script>
$(document).ready(function(){
$('.pay-form').submit(function(e){
e.preventDefault();
var formData = $(this).serialize();
$.ajax({
url:"/createOrder",
type:"POST",
data: formData,
success:function(res){
if(res.success){
var options = {
"key": ""+res.key_id+"",
"amount": ""+res.amount+"",
"currency": "INR",
"name": ""+res.product_name+"",
"description": ""+res.description+"",
"image": "https://dummyimage.com/600x400/000/fff",
"order_id": ""+res.order_id+"",
"handler": function (response){
alert("Payment Succeeded");
// window.open("/","_self")
},
"prefill": {
"contact":""+res.contact+"",
"name": ""+res.name+"",
"email": ""+res.email+""
},
"notes" : {
"description":""+res.description+""
},
"theme": {
"color": "#2300a3"
}
};
var razorpayObject = new Razorpay(options);
razorpayObject.on('payment.failed', function (response){
alert("Payment Failed");
});
razorpayObject.open();
}
else{
alert(res.msg);
}
}
})
});
});
</script>
</body>
</html>