File size: 1,731 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import {ProductCard, ProductCard2} from "./ProductCard";
import { AmazonPay, Upcominglaunches, StylesForMen } from '../Details/OfferDetail'
import ProductSlider from "./ProductSlider";
import { ProductDetail } from '../Details/ProductDetail'
import PrimeSlider from "./PrimeSlider";

const MainSection = () => {
  return (
    <>
      <div id="container">
        <PrimeSlider/>
        <div className="product-gallery">
        <ProductCard
          title="Up to 70% off | Clearance store"
          img="../image/Productimage/b1.jpg"
          offer="Shop Now"
        />
        <ProductCard2 Detail={Upcominglaunches}  title="Latest and upcoming launches" />
        <ProductCard
          title="Amazon pay Book Travel Tickets"
          img="https://images-eu.ssl-images-amazon.com/images/G/31/img22/Wearables/PC_CategoryCard_379X304_1._SY304_CB614835787_.jpg"
          offer="Shop Now"
        />
        <ProductCard2 Detail={AmazonPay}  title="Amazon pay Book Travel Tickets" />
        </div>
        <div className="product-gallery">
        <ProductCard
          title="Bluetooth Calling Smartwatch starts at ₹1,999"
          img="../image/Productimage/b2.jpg"
          offer="Shop Now"
        />
        <ProductCard2 Detail={StylesForMen}  title="Up to 60% off | Styles for men" />
        <ProductCard
          title="Amazon pay Book Travel Tickets"
          img="https://images-eu.ssl-images-amazon.com/images/G/31/img22/Wearables/PC_CategoryCard_379X304_1._SY304_CB614835787_.jpg"
          offer="Shop Now"
        />
        <ProductCard2 Detail={AmazonPay}  title="Amazon pay Book Travel Tickets" />
        </div>

        <ProductSlider />
      </div>
    </>
  );
};

export default MainSection;