mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 04:14:18 +00:00
26 lines
476 B
TypeScript
26 lines
476 B
TypeScript
|
|
import { Layout, BreadcrumbCommon, TabCommon } from 'src/components/common'
|
|
import { AccountNavigation, DeliveryItem, AccountPage } from 'src/components/modules/account';
|
|
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<AccountPage />
|
|
|
|
|
|
|
|
{/* <HomeBanner />
|
|
<HomeFeature />
|
|
<HomeCategories />
|
|
<HomeCollection />
|
|
<HomeVideo />
|
|
<HomeCTA />
|
|
<HomeRecipe />
|
|
<HomeSubscribe /> */}
|
|
</>
|
|
)
|
|
}
|
|
|
|
Home.Layout = Layout
|