+
setCartOpen(true) }}
@@ -200,6 +219,9 @@ function ProductPageContent({ params }: ProductPageProps) {
]}
/>
+
);
diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx
index 4396a97..9dee46f 100644
--- a/src/app/shop/page.tsx
+++ b/src/app/shop/page.tsx
@@ -6,10 +6,20 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog";
import ProductCart from "@/components/ecommerce/cart/ProductCart";
+import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { useProductCatalog } from "@/hooks/useProductCatalog";
import { useCart } from "@/hooks/useCart";
import { useCheckout } from "@/hooks/useCheckout";
+const footerProps = {
+ logoText: "Bakterial", columns: [
+ { title: 'Explore', items: [{ label: 'Our Coffee', href: '/#product-section' }, { label: 'About Us', href: '/#about-section' }, { label: 'Features', href: '/#features-section' }, { label: 'Testimonials', href: '/#testimonial-section' }] },
+ { title: 'Support', items: [{ label: 'Contact Us', href: '/#contact-section' }, { label: 'FAQs', href: '/#contact-section' }, { label: 'Location', href: '/#contact-section' }] },
+ { title: 'Connect', items: [{ label: 'Instagram', href: '#' }, { label: 'Facebook', href: '#' }, { label: 'Twitter', href: '#' }] }
+ ],
+ copyrightText: "© 2025 Bakterial Coffee Co. | All rights reserved.", ariaLabel: "Site footer"
+};
+
function ShopPageContent() {
const {
products,
@@ -41,8 +51,11 @@ function ShopPageContent() {
}, [cartItems, checkout, getCheckoutItems]);
const navbarProps = {
- navItems: [{ "name": "Home", "id": "/" }, { "name": "Shop", "id": "/shop" }],
- brandName: "Bakterial", bottomLeftText: "Global Community", bottomRightText: "hello@example.com", topBarClassName: ""
+ navItems: [{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }],
+ brandName: "Bakterial",
+ bottomLeftText: "Global Community",
+ bottomRightText: "hello@example.com",
+ topBarClassName: ""
};
if (isLoading) {
@@ -60,7 +73,7 @@ function ShopPageContent() {
headingFontWeight="medium"
>
-
+
setCartOpen(true) }}
@@ -84,6 +97,9 @@ function ShopPageContent() {
]}
/>
+
);
@@ -103,7 +119,7 @@ function ShopPageContent() {
headingFontWeight="medium"
>
-
+
setCartOpen(true) }}
@@ -135,6 +151,9 @@ function ShopPageContent() {
]}
/>
+
);