Order Receipt

Itemized food order receipt with qty-by-name lines, a subtotal/delivery/tip breakdown, and bold total.

Lokal · Modern Türk
2× Meze plate₺320
1× Roasted miso salmon₺240
1× Pistachio baklava₺110
Subtotal₺670
Delivery₺35
Tip₺50
Total₺755

Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.

Import & use
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"
/>