mirror of
https://github.com/vercel/commerce.git
synced 2025-07-04 04:01:21 +00:00
24 lines
533 B
TypeScript
24 lines
533 B
TypeScript
|
|
import { Layout } from 'src/components/common';
|
|
import { HomeBanner, HomeCategories, HomeCollection, HomeCTA, HomeFeature, HomeRecipe, HomeSubscribe, HomeVideo } from 'src/components/modules/home';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<HomeBanner/>
|
|
<HomeFeature />
|
|
<HomeCategories />
|
|
<HomeCollection />
|
|
<HomeVideo />
|
|
<HomeCTA />
|
|
<HomeRecipe />
|
|
<HomeSubscribe />
|
|
|
|
{/* // todo: uncomment */}
|
|
{/* <ModalCreateUserInfo/> */}
|
|
</>
|
|
)
|
|
}
|
|
|
|
Home.Layout = Layout
|