Update coffee offerings and remove unwanted drinks

Update Arabic coffee image to show brown coffee, add black coffee as a new service, and remove water, Nescafe, and soft drinks.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 77cfe984-2c65-4152-bb7a-0df28274fe66
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: d240a834-72fd-4784-b9b8-31458c00fd22
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/c3c252e4-c83d-40ca-9fff-99a3ea60701e/77cfe984-2c65-4152-bb7a-0df28274fe66/UggHvbd
Replit-Helium-Checkpoint-Created: true
This commit is contained in:
riyadhafraa
2026-05-04 18:57:17 +00:00
parent 85319e69a0
commit 5be8fff961
4 changed files with 9 additions and 19 deletions
+7 -1
View File
@@ -16,7 +16,7 @@ title = "generated_image"
id = "zvodbXSr2tAsyVcYJXTxE"
uri = "file://artifacts/tx-os/public/service-images/arabic-coffee.png"
type = "image"
title = "generated_image"
title = "brown arabic coffee"
[[generated]]
id = "RyxcoHUo53xV4Vm4SIC9u"
@@ -42,6 +42,12 @@ uri = "file://artifacts/tx-os/public/service-images/soft-drink.png"
type = "image"
title = "generated_image"
[[generated]]
id = "o6pC3J-BuDxzWmTTIl7pO"
uri = "file://artifacts/tx-os/public/service-images/black-coffee.png"
type = "image"
title = "black coffee mug"
[[outputs]]
id = "LYgvZ2mSFO2a8Q7YzWuYh"
uri = "file://attached_assets/tx-icon/main.svg"
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1017 KiB

+2 -18
View File
@@ -302,20 +302,12 @@ async function main() {
},
{
categoryId: beveragesCat?.id ?? null,
nameAr: "ماء",
nameEn: "Water",
nameAr: "قهوة بلاك",
nameEn: "Black Coffee",
price: "0.00",
isAvailable: true,
sortOrder: 3,
},
{
categoryId: beveragesCat?.id ?? null,
nameAr: "قهوة نسكافيه",
nameEn: "Nescafe",
price: "0.00",
isAvailable: true,
sortOrder: 4,
},
{
categoryId: beveragesCat?.id ?? null,
nameAr: "عصير طازج",
@@ -324,14 +316,6 @@ async function main() {
isAvailable: true,
sortOrder: 5,
},
{
categoryId: beveragesCat?.id ?? null,
nameAr: "مشروب غازي",
nameEn: "Soft Drink",
price: "3.00",
isAvailable: false,
sortOrder: 6,
},
];
await db.insert(servicesTable).values(services).onConflictDoNothing({ target: servicesTable.nameEn });