This commit is contained in:
sonnguyenkieio 2021-09-06 14:11:16 +07:00
parent 6c4669e2f9
commit 3f23005064
2 changed files with 20 additions and 4 deletions

View File

@ -1,18 +1,32 @@
import { Layout } from 'src/components/common'
import { HomeBanner, HomeCollection, HomeCTA, HomeSubscribe, HomeVideo, HomeCategories, HomeFeature, HomeRecipe } from 'src/components/modules/home';
import { Layout, BreadcrumbCommon, TabCommon } from 'src/components/common'
import { AccountNavigation, DeliveryItem, AccountPage } from 'src/components/modules/account';
export default function Home() {
const crumbs = [
{link: "/", name: "Home"},
{link: "/blogs", name: "Blog"},
{link: "/product-list", name: "Product List"},
{link: "/product-detail", name: "Product Detail"},
];
return (
<>
<HomeBanner />
<BreadcrumbCommon crumbs={crumbs} showHomePage={true} />
<AccountPage />
{/* <HomeBanner />
<HomeFeature />
<HomeCategories />
<HomeCollection />
<HomeVideo />
<HomeCTA />
<HomeRecipe />
<HomeSubscribe />
<HomeSubscribe /> */}
</>
)
}

View File

@ -28,3 +28,5 @@ export { default as NotiMessage} from './NotiMessage/NotiMessage'
export { default as VideoPlayer} from './VideoPlayer/VideoPlayer'
export { default as SelectCommon} from './SelectCommon/SelectCommon'
export { default as ModalCommon} from './ModalCommon/ModalCommon'
export { default as BreadcrumbCommon } from './BreadcrumbCommon/BreadcrumbCommon'
export { default as TabCommon } from './TabCommon/TabCommon'