mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +00:00
update
This commit is contained in:
@@ -1,18 +1,32 @@
|
|||||||
|
|
||||||
import { Layout } from 'src/components/common'
|
import { Layout, BreadcrumbCommon, TabCommon } from 'src/components/common'
|
||||||
import { HomeBanner, HomeCollection, HomeCTA, HomeSubscribe, HomeVideo, HomeCategories, HomeFeature, HomeRecipe } from 'src/components/modules/home';
|
import { AccountNavigation, DeliveryItem, AccountPage } from 'src/components/modules/account';
|
||||||
|
|
||||||
|
|
||||||
export default function Home() {
|
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 (
|
return (
|
||||||
<>
|
<>
|
||||||
<HomeBanner />
|
<BreadcrumbCommon crumbs={crumbs} showHomePage={true} />
|
||||||
|
<AccountPage />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{/* <HomeBanner />
|
||||||
<HomeFeature />
|
<HomeFeature />
|
||||||
<HomeCategories />
|
<HomeCategories />
|
||||||
<HomeCollection />
|
<HomeCollection />
|
||||||
<HomeVideo />
|
<HomeVideo />
|
||||||
<HomeCTA />
|
<HomeCTA />
|
||||||
<HomeRecipe />
|
<HomeRecipe />
|
||||||
<HomeSubscribe />
|
<HomeSubscribe /> */}
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@@ -28,3 +28,5 @@ export { default as NotiMessage} from './NotiMessage/NotiMessage'
|
|||||||
export { default as VideoPlayer} from './VideoPlayer/VideoPlayer'
|
export { default as VideoPlayer} from './VideoPlayer/VideoPlayer'
|
||||||
export { default as SelectCommon} from './SelectCommon/SelectCommon'
|
export { default as SelectCommon} from './SelectCommon/SelectCommon'
|
||||||
export { default as ModalCommon} from './ModalCommon/ModalCommon'
|
export { default as ModalCommon} from './ModalCommon/ModalCommon'
|
||||||
|
export { default as BreadcrumbCommon } from './BreadcrumbCommon/BreadcrumbCommon'
|
||||||
|
export { default as TabCommon } from './TabCommon/TabCommon'
|
Reference in New Issue
Block a user