mirror of
https://github.com/vercel/commerce.git
synced 2025-05-12 12:47:50 +00:00
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import { AddToCart } from 'components/cart/add-to-cart';
|
|
import Prose from 'components/prose';
|
|
import { Product } from 'lib/shopify/types';
|
|
import { Suspense } from 'react';
|
|
import PriceWithCoreCharge from './price-with-core-charge';
|
|
import { VariantSelector } from './variant-selector';
|
|
|
|
export function ProductDescription({ product }: { product: Product }) {
|
|
return (
|
|
<>
|
|
<div className="mb-6 flex flex-col border-b pb-6 dark:border-neutral-700">
|
|
<h1 className="mb-3 text-4xl font-bold">{product.title}</h1>
|
|
<PriceWithCoreCharge
|
|
variants={product.variants}
|
|
defaultPrice={product.priceRange.minVariantPrice}
|
|
/>
|
|
</div>
|
|
<Suspense fallback={null}>
|
|
<VariantSelector options={product.options} variants={product.variants} />
|
|
</Suspense>
|
|
|
|
{product.descriptionHtml ? (
|
|
<Prose
|
|
className="mb-6 text-sm leading-tight dark:text-white/[60%]"
|
|
html={product.descriptionHtml}
|
|
/>
|
|
) : null}
|
|
|
|
<Suspense fallback={null}>
|
|
<AddToCart variants={product.variants} availableForSale={product.availableForSale} />
|
|
</Suspense>
|
|
</>
|
|
);
|
|
}
|