This commit is contained in:
Belen Curcio
2021-01-10 15:55:11 -03:00
parent 92a2388bd1
commit 0a05182f3b
6 changed files with 43 additions and 45 deletions

View File

@@ -41,7 +41,7 @@ export default function Home({
categories,
}: InferGetStaticPropsType<typeof getStaticProps>) {
return (
<div>
<>
<Grid>
{products.slice(0, 3).map((product, i) => (
<ProductCard
@@ -102,12 +102,12 @@ export default function Home({
/>
))}
</Marquee>
{/* <HomeAllProductsGrid
newestProducts={newestProducts}
<HomeAllProductsGrid
newestProducts={products}
categories={categories}
brands={brands}
/> */}
</div>
/>
</>
)
}