feat: add cart on front

This commit is contained in:
2026-06-23 20:38:41 +03:00
parent d9745d972a
commit 733e3f6208
5 changed files with 31 additions and 8 deletions
+2 -2
View File
@@ -42,8 +42,8 @@ export default function Cart() {
>
<span className="font-medium ">{ci.item.name}</span>
<span>
{ci.quanitity} x {ci.item.price} ={" "}
{ci.quantity * ci.item.price}
{ci.quantity} x {ci.item.price}р. ={" "}
{ci.quantity * ci.item.price}р.
</span>
</div>
))}