feat: Home Feature

This commit is contained in:
quocsonnguyen
2021-08-26 17:49:07 +07:00
parent 3c7aa8e862
commit bbf9db4e00
6 changed files with 90 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import React from 'react'
import s from './HomeFeature.module.scss'
import HomeFeatureItem from './HomeFeatureItem'
import img from './assets/desktop.png'
interface HomeFeatureProps {
}
const HomeFeature = ({ }: HomeFeatureProps) => {
return (
<section className={s.homeFeature}>
<HomeFeatureItem image={img} children="Webshop owner will upload products at 10:30pm, shoppers can buy fresh products at 11pm." />
<HomeFeatureItem image={img} children="Most fresh fish and seafood will be listed at 8am from inventory. " />
<HomeFeatureItem image={img} children="Show that food will be shipped in a greengrocery plastic bag" />
</section>
)
}
export default HomeFeature