Update src/app/shop/page.tsx

This commit is contained in:
2026-02-20 21:47:23 +00:00
parent ea088095f0
commit 5f38fc4eb0

View File

@@ -30,7 +30,8 @@ export default function ShopPage() {
getCheckoutItems,
} = useCart();
const { checkout, isLoading: isCheckoutLoading } = useCheckout();
const {
checkout, isLoading: isCheckoutLoading } = useCheckout();
const handleCheckout = useCallback(async () => {
if (cartItems.length === 0) return;
@@ -59,7 +60,7 @@ export default function ShopPage() {
<ReactLenis root>
<div id="navbar" data-section="navbar">
<NavbarStyleFullscreen
navItems={[{ name: "Home", id: "/" }]}
navItems={[{ name: "Home", id: "/" }]}
brandName="AI CRM Pro"
bottomLeftText="Smart Solutions for Business"
bottomRightText="contact@aicrm.com"
@@ -138,4 +139,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}