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