Itemized food order receipt with qty-by-name lines, a subtotal/delivery/tip breakdown, and bold total.
Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.
import { Food5 } from "@/components/beste/piece/food5";
<Food5
restaurant="Lokal · Modern Türk"
items={[
{
"qty": 2,
"name": "Meze plate",
"price": "₺320"
},
{
"qty": 1,
"name": "Roasted miso salmon",
"price": "₺240"
},
{
"qty": 1,
"name": "Pistachio baklava",
"price": "₺110"
}
]}
subtotal="₺670"
delivery="₺35"
tip="₺50"
total="₺755"
subtotalLabel="Subtotal"
deliveryLabel="Delivery"
tipLabel="Tip"
totalLabel="Total"
/>