This commit is contained in:
2025-08-27 14:28:09 +02:00
parent 5da90f7f40
commit 7d94237898
4 changed files with 25 additions and 32 deletions

View File

@@ -12,7 +12,7 @@ import {
} from '@headlessui/react'
import { StarIcon } from '@heroicons/react/20/solid'
import { HeartIcon } from '@heroicons/react/24/outline'
import { H2, PS } from '@/components/text'
import { H2, PS, PXS } from '@/components/text'
const product = {
name: 'VEDA III',
@@ -184,7 +184,7 @@ export default function Veda3() {
<ul role="list" className="list-disc pl-5 space-y-2">
{product.details[0].items.map((item) => (
<li key={item} className="text-gray-700">
<span className="text-gray-900">{item}</span>
<PXS>{item}</PXS>
</li>
))}
</ul>