Product View

This commit is contained in:
Belen Curcio
2020-10-12 10:46:17 -03:00
parent 2d347d487b
commit d5868fae02
4 changed files with 20 additions and 37 deletions

View File

@@ -20,7 +20,7 @@ export default function Home({
brands,
}: InferGetStaticPropsType<typeof getStaticProps>) {
return (
<>
<div className="mt-3">
<Grid items={products.slice(0, 3)} wrapper={ProductCard} />
<Marquee
items={products.slice(0, 3)}
@@ -77,7 +77,7 @@ export default function Home({
/>
</div>
</div>
</>
</div>
)
}