diff options
| author | Rafi Zadanly <rafizadanly@gmail.com> | 2022-12-16 17:35:26 +0700 |
|---|---|---|
| committer | Rafi Zadanly <rafizadanly@gmail.com> | 2022-12-16 17:35:26 +0700 |
| commit | f9e3e64ca2f95aabe17a62d9c09f3fcef7c2c48f (patch) | |
| tree | 82426f7cbee7d8d923afa82cb8d1bb1944d9ee32 /src/pages/shop/product | |
| parent | b7a98fbaa9bd2c8d9fafbe3090bc2c0a8a09dde5 (diff) | |
Footer
Diffstat (limited to 'src/pages/shop/product')
| -rw-r--r-- | src/pages/shop/product/[slug].js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pages/shop/product/[slug].js b/src/pages/shop/product/[slug].js index 2b54a1e0..5e0c8853 100644 --- a/src/pages/shop/product/[slug].js +++ b/src/pages/shop/product/[slug].js @@ -11,6 +11,7 @@ import ProductSlider from "../../../components/product/ProductSlider"; import Layout from "../../../components/Layout"; import { createOrUpdateItemCart } from "../../../helpers/cart"; import toast from "react-hot-toast"; +import Footer from "../../../components/Footer"; export async function getServerSideProps( context ) { const { slug } = context.query; @@ -195,6 +196,8 @@ export default function ProductDetail({ product }) { <ProductSlider products={similarProducts}/> </div> </div> + + <Footer /> </Layout> </> ); |
