66 lines
1.7 KiB
TypeScript
66 lines
1.7 KiB
TypeScript
import type { CateringPackage } from './entities';
|
|
|
|
/**
|
|
* Catering packages — price per head in SEK (kr).
|
|
* Dish IDs reference domain/catering/dish-catalog.ts.
|
|
*/
|
|
export const cateringPackages: CateringPackage[] = [
|
|
{
|
|
id: 'silver',
|
|
name: 'Silver Package',
|
|
description:
|
|
'A refined introduction to Shahi catering — one signature curry, dal, rice, naan and fresh salad. Ideal for office lunches and intimate gatherings.',
|
|
pricePerHead: 189,
|
|
currency: 'SEK',
|
|
includedDishes: [
|
|
'butter-chicken',
|
|
'dal',
|
|
'plain-rice',
|
|
'naan',
|
|
'salad',
|
|
],
|
|
image: 'butter-chicken.jpg',
|
|
},
|
|
{
|
|
id: 'gold',
|
|
name: 'Gold Package',
|
|
description:
|
|
'Our most popular celebration menu — biryani, two curries, a vegetarian classic, rice, naan, raita and salad. Perfect for weddings and family events.',
|
|
pricePerHead: 249,
|
|
currency: 'SEK',
|
|
includedDishes: [
|
|
'chicken-biryani',
|
|
'butter-chicken',
|
|
'lamb-karahi',
|
|
'palak-paneer',
|
|
'plain-rice',
|
|
'naan',
|
|
'raita',
|
|
'salad',
|
|
],
|
|
image: 'chicken-biryani.jpg',
|
|
highlight: true,
|
|
},
|
|
{
|
|
id: 'royal',
|
|
name: 'Royal Shahi Package',
|
|
description:
|
|
'The full Shahi experience — biryani, tikka masala, premium lamb, seekh kebab, paneer, dal, and complete sides. For grand occasions that demand royalty.',
|
|
pricePerHead: 329,
|
|
currency: 'SEK',
|
|
includedDishes: [
|
|
'chicken-biryani',
|
|
'chicken-tikka-masala',
|
|
'butter-chicken',
|
|
'lamb-korma',
|
|
'seekh-kebab',
|
|
'shahi-paneer',
|
|
'dal',
|
|
'plain-rice',
|
|
'naan',
|
|
'raita',
|
|
'salad',
|
|
],
|
|
image: 'lamm-karahi.jpg',
|
|
},
|
|
]; |