mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 15:06:59 +00:00
70 lines
2.1 KiB
TypeScript
70 lines
2.1 KiB
TypeScript
import s from './ProductView.module.css'
|
|
import { FC } from 'react'
|
|
import type { Product } from '@commerce/types/product'
|
|
|
|
import { ProductCard } from '@components/product'
|
|
import { Container, Text } from '@components/ui'
|
|
import { ProductProvider } from '../product-context'
|
|
import ProductDetails from '../ProductDetails/ProductDetails'
|
|
import { SEO } from '@components/common'
|
|
|
|
interface ProductViewProps {
|
|
product: Product
|
|
relatedProducts: Product[]
|
|
}
|
|
|
|
const ProductView: FC<ProductViewProps> = ({ product, relatedProducts }) => {
|
|
return (
|
|
<>
|
|
<Container className="max-w-none w-full" clean>
|
|
<hr className="mt-7 border-accent-2" />
|
|
<section className="py-12 px-6 mb-10">
|
|
<ProductProvider product={product}>
|
|
<ProductDetails />
|
|
</ProductProvider>
|
|
<Text variant="sectionHeading">Related Products</Text>
|
|
<div className={s.relatedProductsGrid}>
|
|
{relatedProducts.map((p) => (
|
|
<div
|
|
key={p.path}
|
|
className="animated fadeIn bg-accent-0 border border-accent-2"
|
|
>
|
|
<ProductCard
|
|
noNameTag
|
|
product={p}
|
|
key={p.path}
|
|
variant="simple"
|
|
className="animated fadeIn"
|
|
imgProps={{
|
|
width: 300,
|
|
height: 300,
|
|
}}
|
|
/>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</section>
|
|
</Container>
|
|
<SEO
|
|
title={product.seo?.title || product.name}
|
|
description={product.seo?.description || product.description}
|
|
openGraph={{
|
|
type: 'website',
|
|
title: product.seo?.title || product.name,
|
|
description: product.seo?.description || product.description,
|
|
images: [
|
|
{
|
|
url: product.images[0]?.url!,
|
|
width: '800',
|
|
height: '600',
|
|
alt: product.name,
|
|
},
|
|
],
|
|
}}
|
|
/>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default ProductView
|