New UI Primitices

This commit is contained in:
Belen Curcio
2020-10-04 15:16:56 -03:00
parent cf9495e6c2
commit aa657c8baa
11 changed files with 127 additions and 45 deletions

View File

@@ -1,12 +1,12 @@
import { GetStaticPropsContext, InferGetStaticPropsType } from 'next'
import getAllProducts from '@lib/bigcommerce/api/operations/get-all-products'
import { Layout } from '@components/core'
import { ProductGrid } from '@components/product'
import { Grid, Marquee } from '@components/ui'
export async function getStaticProps({ preview }: GetStaticPropsContext) {
const { products } = await getAllProducts()
return {
props: { products: products.slice(0, 6) },
props: { products },
}
}
@@ -15,13 +15,36 @@ export default function Home({
}: InferGetStaticPropsType<typeof getStaticProps>) {
return (
<>
<ProductGrid
products={[...products, ...products, ...products, ...products]}
layout="C"
<Grid items={products.slice(0, 3)} />
<Marquee
items={products.slice(0, 3)}
wrapper={(p: any) => (
<div className="flex flex-1 justify-end">
<img
className="w-full"
src={p.node.images.edges[0].node.urlSmall}
/>
<span className="bg-black text-white inline-block p-3 font-bold text-2xl break-words">
{p.node.name}
</span>
</div>
)}
/>
{/* <ProductGrid products={[...products.slice(0, 3)]} layout={2} /> */}
{/* <div></div> */}
{/* <ProductGrid products={products.slice(3)} /> */}
<Grid items={products.slice(3, 6)} layout="B" />
<Marquee
variant="secondary"
items={products.slice(0, 3)}
wrapper={() => (
<div className="flex flex-1">
<h3 className="bg-black text-white inline p-3 font-bold text-2xl">
This is a very short title
</h3>
</div>
)}
/>
<div className="bg-black">
<h2 className=""> A very long title with a nice description</h2>
</div>
</>
)
}