feat(F-064): completed feature
This commit is contained in:
@@ -85,7 +85,11 @@ export default async function ProductPage({ params }: PageProps) {
|
||||
{product.name}
|
||||
</h1>
|
||||
<p className="text-lg leading-8 text-stone-700">
|
||||
{product.description ?? 'Producto del catálogo público de mercadodevida.'}
|
||||
{product.description ? (
|
||||
<span dangerouslySetInnerHTML={{ __html: product.description }} />
|
||||
) : (
|
||||
'Producto del catálogo público de mercadodevida.'
|
||||
)}
|
||||
</p>
|
||||
<dl className="grid gap-4 rounded-3xl border border-emerald-900/10 bg-white p-6 text-sm text-stone-700 sm:grid-cols-2">
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user