Temporary remove scoll event

This commit is contained in:
Belen Curcio
2020-11-06 13:58:16 -03:00
parent 0aaeafca56
commit 6ff2e45d8e
2 changed files with 17 additions and 18 deletions

View File

@@ -83,7 +83,6 @@ export default function Home({
categories,
newestProducts,
}: InferGetStaticPropsType<typeof getStaticProps>) {
console.log('x')
return (
<div>
<Grid>
@@ -98,7 +97,7 @@ export default function Home({
/>
))}
</Grid>
<Marquee variant="secondary">
{/* <Marquee variant="secondary">
{bestSelling.slice(3, 6).map(({ node }) => (
<ProductCard
key={node.path}
@@ -147,7 +146,7 @@ export default function Home({
categories={categories}
brands={brands}
newestProducts={newestProducts}
/>
/> */}
</div>
)
}