mirror of
https://github.com/vercel/commerce.git
synced 2025-07-04 12:11:22 +00:00
24 lines
526 B
TypeScript
24 lines
526 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
|