- {analyses.map(({ title, variant, description, subtitle, price }) => {
- const formattedPrice =
- typeof price === 'number'
- ? formatCurrency({
- currencyCode: 'eur',
- locale: language,
- value: price,
- })
- : null;
- return (
-
-
-
-
-
-
-
-
-
-
-
-
- {title}
- {description && (
- <>
-
- {formattedPrice}
- {description}
-
- }
- />
- >
- )}
-
- {subtitle && {subtitle}}
-
-