// Parties / packages page. window.CJParties function CJParties({ go }) { const D = window.CJDS; const { SectionHeading, PriceCard, Card, Badge, Button } = D; const Icon = window.CJIcon; const data = window.CJ_DATA; const addons = [ { icon: 'gift', label: 'Extra goodie bags', price: '$6 / child' }, { icon: 'ice-cream-cone', label: 'Ice-cream sundae bar', price: '$45' }, { icon: 'camera', label: 'Party photographer', price: '$120' }, { icon: 'cake', label: 'Custom themed cake', price: 'from $55' }, ]; return (
{data.packages.map((p) => ( go('Booking')} /> ))}
{/* Add-ons */}

Make it extra special

Add any of these at checkout.

{addons.map((a) => (
{a.label}
{a.price}
))}
{/* FAQ / reassurance band */}
{[['calendar-check', 'Flexible dates', 'Reschedule free up to 72 hours before your party.'], ['users', 'Extra guests welcome', 'Add jumpers at $18 each — just let your host know.'], ['badge-check', 'Fully insured', 'Every party is covered and staffed by certified monitors.']].map(([ic, t, d]) => (
{t}
{d}
))}
); } window.CJParties = CJParties;