2023-02-18 11:48:45 +02:00

12 lines
349 B
TypeScript

import { Item } from "@prisma/client";
export default function MenuCard({item}: {item: Item}) {
return (
<div className=" border rounded p-3 w-[49%] mb-3">
<h3 className="font-bold text-lg">{item.name}</h3>
<p className="font-light mt-1 text-sm">{item.description}</p>
<p className="mt-7">{item.price}</p>
</div>
);
}