github.com/muhammedhassanm/blockchain@v0.0.0-20200120143007-697261defd4d/build-blockchain-insurance-app-master/web/src/shop/products.js (about)

     1  export default {
     2    "bikes": [
     3      {
     4        "brand": "Canyon",
     5        "model": "Spectral AL 6.0",
     6        "price": 3420.0,
     7        "imgSrc": "/img/products/bike1.png",
     8        "description": `Colour: Grey <br> Type: All-Mountain`
     9      },
    10      {
    11        "brand": "Centurion",
    12        "model": "No Pogo 800.27",
    13        "price": 2110.0,
    14        "imgSrc": "/img/products/bike2.png",
    15        "description": `Colour: Grey <br> Type: All-Mountain`
    16      },
    17      {
    18        "brand": "Popal",
    19        "model": "E-VO9.0",
    20        "price": 4050.0,
    21        "imgSrc": "/img/products/bike3.png",
    22        "description": `Colour: Black <br> Type: Pedelec`
    23      },
    24      {
    25        "brand": "Serious",
    26        "model": "Bear Rock CX500",
    27        "price": 1023.0,
    28        "imgSrc": "/img/products/bike4.png",
    29        "description": `Colour: Black <br> Typ: Pedelec`
    30      }
    31    ],
    32    "smart-phones": [
    33      {
    34        "brand": "Samsung",
    35        "model": "S7",
    36        "price": 660,
    37        "imgSrc": "/img/products/smartPhone1.png",
    38        "description": `Colour: Black <br> Memory: 32GB`
    39      },
    40      {
    41        "brand": "Apple",
    42        "model": "6",
    43        "price": 630.0,
    44        "imgSrc": "/img/products/smartPhone2.png",
    45        "description": `Colour: Black <br> Memory: 32GB`
    46      },
    47      {
    48        "brand": "Sony",
    49        "model": "Z",
    50        "price": 410.0,
    51        "imgSrc": "/img/products/smartPhone3.png",
    52        "description": `Colour: Black <br> Memory: 32GB`
    53      },
    54      {
    55        "brand": "Google",
    56        "model": "Pixel",
    57        "price": 550.0,
    58        "imgSrc": "/img/products/smartPhone4.png",
    59        "description": `Colour: White <br> Memory: 32GB`
    60      }
    61    ],
    62    "skis": [
    63      {
    64        "brand": "Fischer",
    65        "model": "RC4 Worldcup SC",
    66        "price": 2300.00,
    67        "imgSrc": "/img/products/ski1.png",
    68        "description": `Radius in m: 13m <br> Lengths in cm: 150, 155, 160, 165, 170`
    69      },
    70      {
    71        "brand": "Atomic",
    72        "model": "Redster Edge GS",
    73        "price": 2100.00,
    74        "imgSrc": "/img/products/ski2.png",
    75        "description": `Radius in m: 15 <br> Lengths in cm: 162, 169, 176, 183`
    76      },
    77      {
    78        "brand": "Fischer",
    79        "model": "RC4 Worldcup GS",
    80        "price": 2450,
    81        "imgSrc": "/img/products/ski3.png",
    82        "description": `Radius in m: 25 <br> Length in cm: 186`
    83      },
    84      {
    85        "brand": "Nordica",
    86        "model": "Dobermann GS",
    87        "price": 2600,
    88        "imgSrc": "/img/products/ski4.png",
    89        "description": `Radius in m: 25 <br> Length in cm: 184`
    90      }
    91    ]
    92  };