25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- import React from 'react';
- import Navbar from "@/components/_App/Navbar";
- import Footer from "@/components/_App/Footer";
- import PageBanner from '@/components/Common/PageBanner';
- import ProductCard from '@/components/others/Shop/ProductCard';
-
- const Shop = () => {
- return (
- <>
- <Navbar />
-
- <PageBanner pageTitle="Products" />
-
- <ProductCard />
-
- <Footer />
- </>
- )
- }
-
- export default Shop;
|