import React from 'react'; import Image from 'next/image'; import styles from './CateringPackages.module.css'; import { motion } from 'framer-motion'; const packages = [ { id: 'silver', name: 'SILVER PACKAGE', price: '$19', perPerson: 'PER PERSON', minPeople: '(MIN 20PPL)', image: '/images/catering/packages/silver.webp', // Placeholder items: [ 'Choice of two kebabs (Adana, Kofta, Chicken Shish, Meat Doner, Chicken Doner)', 'Rice or Bulgur', 'Choice of one salad (Garden, Greek, Caesar Salad)', 'Choice of 1 appetizer (Babaghanoush, Hummus, Haydari)', 'Freshly baked bread', 'Grilled tomato and peppers' ] }, { id: 'gold', name: 'GOLD PACKAGE', price: '$23', perPerson: 'PER PERSON', minPeople: '(MIN 25PPL)', image: '/images/catering/packages/gold.webp', // Placeholder items: [ 'Choice of two kebabs (Adana, Kofta, Chicken Shish, Meat Doner, Chicken Doner)', 'Rice or Bulgur', 'Choice of one salad (Garden, Greek, Caesar Salad)', 'Choice of 2 appetizers (Babaghanoush, Hummus, Haydari)', 'Garlic potatoes or Fried and spiced eggplants', 'Freshly baked bread', 'Grilled tomato and peppers', 'Dessert (Sutlac-Rice Pudding)' ] }, { id: 'platinum', name: 'PLATINUM PACKAGE', price: '$25', perPerson: 'PER PERSON', minPeople: '(MIN 30PPL)', image: '/images/catering/packages/platinum.webp', // Placeholder items: [ 'Choice of 2 kebabs (Adana, Kofta, Chicken Shish, Meat Doner, Chicken Doner)', 'Rice or Bulgur', 'Choice of one salad (Garden, Greek, Caesar Salad)', 'Choice of 2 appetizers (Babaghanoush, Hummus, Haydari)', 'Garlic potatoes or Fried and Spiced eggplants', 'Grilled tomato and peppers', 'Freshly baked bread', 'Dessert (Sutlac-Rice Pudding)', 'Qabuli Plau (Basmati rice with carrots and raisins topped with veal chunks)' ] } ]; const addOns = [ { name: 'Tray of Falafel', price: '$60', image: '/images/catering/packages/tray.webp' }, { name: 'Shola Gorbandi', price: '$80', image: '/images/catering/packages/shola.webp' }, { name: 'Kavurma (Saluted Veal)', price: '$80', image: '/images/catering/packages/kavurma.webp' }, { name: 'Mantu (Afghan style dumplings)', price: '$80', image: '/images/catering/packages/mantu.webp' } ]; const CateringPackages = () => { return ( <> Catering Packages Choose the perfect menu for your event {packages.map((pkg, index) => ( {/* Content Side */} {pkg.name} {pkg.price} {pkg.perPerson} {pkg.minPeople} {pkg.items.map((item, i) => ( ✓ {item} ))} {/* Image Side */} ))} {/* Add Ons Section */} EXTRAS Delicious Add-Ons Enhance your catering package with our signature sides and specialty dishes. {addOns.map((addon, i) => ( {addon.name} {addon.price} ))} > ); }; export default CateringPackages;
Choose the perfect menu for your event
Enhance your catering package with our signature sides and specialty dishes.
{addon.price}