Merge branch 'main' into feature/MED-100

This commit is contained in:
2025-07-21 11:38:47 +03:00
46 changed files with 6714 additions and 501 deletions

View File

@@ -17,8 +17,8 @@ export const PackageHeader = ({
}) => {
return (
<div className="space-y-1 text-center">
<p className="font-medium">{title}</p>
<h2>
<p className="text-sm sm:text-lg sm:font-medium">{title}</p>
<h2 className="text-xl sm:text-4xl">
{formatCurrency({
currencyCode: 'eur',
locale: language,

View File

@@ -11,7 +11,7 @@ export default function SelectAnalysisPackages({ analysisPackages, countryCode }
<SelectAnalysisPackage key={product.title} analysisPackage={product} countryCode={countryCode} />
)) : (
<h4>
<Trans i18nKey='order-analysis-package:noPackagesAvailable' />
<Trans i18nKey="order-analysis-package:noPackagesAvailable" />
</h4>
)}
</div>