mirror of
https://github.com/vercel/commerce.git
synced 2025-07-24 10:41:23 +00:00
✨ feat: Home Feature
This commit is contained in:
25
src/components/modules/home/HomeFeature/HomeFeature.tsx
Normal file
25
src/components/modules/home/HomeFeature/HomeFeature.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
import React from 'react'
|
||||
import s from './HomeFeature.module.scss'
|
||||
|
||||
import HomeFeatureItem from './components/HomeFeatureItem/HomeFeatureItem'
|
||||
|
||||
const HomeFeature = () => {
|
||||
return (
|
||||
<section className={s.homeFeature}>
|
||||
<HomeFeatureItem image="firstImg">
|
||||
<span> Webshop owner will <b>upload products at 10:30pm </b>shoppers can buy <b>fresh products at 11pm.</b></span>
|
||||
</HomeFeatureItem>
|
||||
|
||||
<HomeFeatureItem image="secondImg">
|
||||
<span>Most fresh fish and seafood <b>will be listed at 8am </b>from inventory.</span>
|
||||
</HomeFeatureItem>
|
||||
|
||||
<HomeFeatureItem image="thirdImg">
|
||||
<span>Show that food will be shipped in <b>a greengrocery plastic bag</b>.</span>
|
||||
</HomeFeatureItem>
|
||||
</section>
|
||||
)
|
||||
|
||||
}
|
||||
|
||||
export default HomeFeature
|
Reference in New Issue
Block a user