I have created a web App which shows the cake Products on the front page. I wrote code in React and every thing is working fine. Currently, my application looks something like this 
The first 3 product(cake) are shown above and last 3 are shown below. Now, I need to those product in this way where item represents the image of the cake. How can this be done?

My JSX Code in React up to this is:-
import React from 'react'
import { Container } from 'semantic-ui-react';
const numberOfPicture = [1, 2, 3, 4, 5, 6];
const Product = () => {
return (
<Container>
<div className='ui three column grid' id="cakesProduct">
{numberOfPicture.map((picture, index) => (
<div className="column" key={index}>
<div className="ui fluid card">
<div className="image">
<img src={`assets/cakes/cake-${picture}.jpg`} />
</div>
</div>
</div>
))}
</div>
</Container >
);
}
export default Product