commerce/pages/index.tsx
lytrankieio123 a0ed04329d 🐛 bug: home feature
:%s
2021-08-27 16:25:44 +07:00

21 lines
462 B
TypeScript

import { Layout } from 'src/components/common'
import { HomeBanner, HomeCollection, HomeCTA, HomeSubscribe, HomeVideo, HomeCategories, HomeFeature, HomeRecipe } from 'src/components/modules/home';
export default function Home() {
return (
<>
<HomeBanner />
<HomeFeature />
<HomeCategories />
<HomeCollection />
<HomeVideo />
<HomeCTA />
<HomeRecipe />
<HomeSubscribe />
</>
)
}
Home.Layout = Layout