import React from "react"; import Image from "next/image"; import { MenuItem as MenuItemType } from "@/data/menu"; export function MenuItem({ item, onClick }: { item: MenuItemType; onClick?: () => void }) { return (

{item.name}

{item.description && (

{item.description}

)} {item.price && (
{item.price}
)}
{item.image && (
{item.name}
)}
); }