mirror of
https://github.com/vercel/commerce.git
synced 2025-07-06 13:01:22 +00:00
21 lines
514 B
TypeScript
21 lines
514 B
TypeScript
|
|
import { Layout } from 'src/components/common';
|
|
import { MenuNavigation,MenuFilter} from 'src/components/common';
|
|
import { HomeBanner, HomeCategories, HomeCTA, HomeSubscribe, HomeVideo } from 'src/components/modules/home';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
{/* <HomeBanner />
|
|
<HomeCategories/>
|
|
<HomeVideo />
|
|
<HomeCTA />
|
|
<HomeSubscribe /> */}
|
|
<MenuFilter heading="Categories"/>
|
|
<MenuNavigation heading="Categories"/>
|
|
</>
|
|
)
|
|
}
|
|
|
|
Home.Layout = Layout
|