import type { Category } from '@/data/menu' import MenuItemRow from './MenuItemRow' type Props = { category: Category lang: string currency: string } export default function CategorySection({ category, lang, currency }: Props) { const l = lang as 'tr' | 'en' return (
{/* Category heading */}
{category.emoji}

{category.label[l]}

{/* Decorative line */}
{/* Items */}
{category.items.map((item, i) => ( ))}
) }