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