import type { MenuItem } from '@/data/menu' type Props = { item: MenuItem lang: string currency: string index: number isLast?: boolean } export default function MenuItemRow({ item, lang, currency, index, isLast }: Props) { const l = lang as 'tr' | 'en' return (
{/* Image or Emoji circle */}
{item.image ? ( {item.name[l]} ) : ( item.emoji || '✨' )}
{/* Text Content */}

{item.name[l]}

{/* Price */} {item.price !== undefined && ( {item.price} {currency} )}
{item.description && (

{item.description[l]}

)}
) }