diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index a7e3267..9d45169 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -74,11 +74,21 @@ function ProductPageContent({ params }: ProductPageProps) { }, [cartItems, checkout, getCheckoutItems]); const themeProviderProps = { - defaultButtonVariant: "shift-hover", defaultTextAnimation: "entrance-slide", borderRadius: "rounded", contentWidth: "small", sizing: "largeSmallSizeLargeTitles", background: "floatingGradient", cardStyle: "glass-elevated", primaryButtonStyle: "shadow", secondaryButtonStyle: "glass", headingFontWeight: "bold" + defaultButtonVariant: "shift-hover", + defaultTextAnimation: "entrance-slide", + borderRadius: "rounded", + contentWidth: "small", + sizing: "largeSmallSizeLargeTitles", + background: "floatingGradient", + cardStyle: "glass-elevated", + primaryButtonStyle: "shadow", + secondaryButtonStyle: "glass", + headingFontWeight: "bold" }; const navbarProps = { - brandName: "Baba's Bakery", navItems: [ + brandName: "Baba's Bakery", + navItems: [ { name: "Home", id: "/" }, { name: "Shop", id: "/shop" } ], @@ -161,7 +171,8 @@ function ProductPageContent({ params }: ProductPageProps) { total={`$${cartTotal}`} buttons={[ { - text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout, + text: isCheckoutLoading ? "Processing..." : "Check Out", + onClick: handleCheckout, }, ]} /> @@ -169,4 +180,4 @@ function ProductPageContent({ params }: ProductPageProps) { ); -} +} \ No newline at end of file diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 5281186..bec4829 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -41,11 +41,21 @@ function ShopPageContent() { }, [cartItems, checkout, getCheckoutItems]); const themeProviderProps = { - defaultButtonVariant: "shift-hover", defaultTextAnimation: "entrance-slide", borderRadius: "rounded", contentWidth: "small", sizing: "largeSmallSizeLargeTitles", background: "floatingGradient", cardStyle: "glass-elevated", primaryButtonStyle: "shadow", secondaryButtonStyle: "glass", headingFontWeight: "bold" + defaultButtonVariant: "shift-hover", + defaultTextAnimation: "entrance-slide", + borderRadius: "rounded", + contentWidth: "small", + sizing: "largeSmallSizeLargeTitles", + background: "floatingGradient", + cardStyle: "glass-elevated", + primaryButtonStyle: "shadow", + secondaryButtonStyle: "glass", + headingFontWeight: "bold" }; const navbarProps = { - brandName: "Baba's Bakery", navItems: [ + brandName: "Baba's Bakery", + navItems: [ { name: "Home", id: "/" }, { name: "Shop", id: "/shop" } ], @@ -95,7 +105,8 @@ function ShopPageContent() { total={`$${cartTotal}`} buttons={[ { - text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout, + text: isCheckoutLoading ? "Processing..." : "Check Out", + onClick: handleCheckout, }, ]} /> @@ -111,4 +122,4 @@ export default function ShopPage() { ); -} +} \ No newline at end of file