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