Replace entire repo content with kottgard-production-v1.1.zip (for shahikitchen-prod repo)

This commit is contained in:
root
2026-06-29 15:04:08 +00:00
parent 6cd5aaa048
commit 57cc67d2d3
850 changed files with 26149 additions and 15588 deletions
-66
View File
@@ -1,66 +0,0 @@
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',
},
];