From bc22a619fa02c4a607ae01b7f31fc7787f621e6b Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 12:10:24 +0000 Subject: [PATCH] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 5bc542b..4af0323 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -60,23 +60,23 @@ function ShopPageContent() { setCartOpen(true) }} + button={{ text: "Кошик", onClick: () => setCartOpen(true) }} />
-

Loading products...

+

Завантаження товарів...

@@ -102,10 +102,10 @@ function ShopPageContent() { setCartOpen(true) }} + button={{ text: "Кошик", onClick: () => setCartOpen(true) }} />
@@ -114,9 +114,9 @@ function ShopPageContent() { products={products} searchValue={search} onSearchChange={setSearch} - searchPlaceholder="Search products..." + searchPlaceholder="Пошук товарів..." filters={filters} - emptyMessage="No products found" + emptyMessage="Товари не знайдено" />
@@ -129,7 +129,7 @@ function ShopPageContent() { total={`$${cartTotal}`} buttons={[ { - text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout, + text: isCheckoutLoading ? "Обробка..." : "Оформити замовлення", onClick: handleCheckout, }, ]} /> @@ -138,10 +138,10 @@ function ShopPageContent() {