diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index c57a87e..4b05e87 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -74,93 +74,9 @@ function ProductPageContent({ params }: ProductPageProps) { await checkout(getCheckoutItems(), { successUrl: currentUrl.toString() }); }, [cartItems, checkout, getCheckoutItems]); - if (isLoading) { - return ( - - - -
-
-

Loading product...

-
-
- -
-
- ); - } - if (!product) { - return ( - - - -
-
-
-

Product not found

- -
-
-
- -
-
- ); - } + const navItems = [{ name: "Home", id: "/" }, { name: "Blog", id: "/blog" }, { name: "Shop", id: "/shop" }]; + const footerColumns = [{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/#features" }, { label: "About Us", href: "/#about" }] }, { items: [{ label: "Clients", href: "/#social-proof" }, { label: "Testimonials", href: "/#testimonials" }, { label: "Contact", href: "/#contact" }] }]; return ( -