import React from 'react' import s from './HomeFeature.module.scss' import FirstPic from './assets/10h30-11h.png' import SecondPic from './assets/8h.png' import ThirdPic from './assets/green.png' import HomeFeatureCarousel from './components/HomeFeatureCarousel/HomeFeatureCarousel' const CAROUSEL_DATA = [ { image: FirstPic, children: Webshop owner will upload products at 10:30pm shoppers can buy fresh products at 11pm., }, { image: SecondPic, children: Most fresh fish and seafood will be listed at 8am from inventory., }, { image: ThirdPic, children: Show that food will be shipped in a greengrocery plastic bag., }, ] const HomeFeature = () => { return (
) } export default HomeFeature