Merge version_1 into main #1

Merged
bender merged 2 commits from version_1 into main 2026-02-13 17:33:08 +00:00
2 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';

View File

@@ -195,8 +195,8 @@ export default function ProductPage({ params }: ProductPageProps) {
sku={meta.sku}
buttons={[
{ text: "Add To Cart", onClick: handleAddToCart },
{ text: "Buy Now", onClick: handleBuyNow },
]
{ text: "Buy Now", onClick: handleBuyNow }
]}
/>
</div>
<div id="productCart" data-section="productCart">
@@ -209,9 +209,9 @@ export default function ProductPage({ params }: ProductPageProps) {
total={`$${cartTotal}`}
buttons={[
{
text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout,
},
]
text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout
}
]}
/>
</div>
<div id="footer" data-section="footer">