add datetable cnfcnpj

This commit is contained in:
2025-11-24 11:45:53 -03:00
parent 5b1ba9e9c7
commit 78ad183e61
29 changed files with 828 additions and 255 deletions

View File

@@ -206,14 +206,17 @@ function Course({
<li className="flex gap-1.5">
<span
className={cn({
'line-through text-muted-foreground': custom_pricing
'line-through text-muted-foreground': custom_pricing,
'font-bold': !custom_pricing
})}
>
{currency.format(metadata__unit_price)}
</span>
{custom_pricing && (
<span>{currency.format(custom_pricing)}</span>
<span className="font-bold">
{currency.format(custom_pricing)}
</span>
)}
</li>
</>