nvis-fe-cms-libs 1.1.6 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -582,16 +582,21 @@ const AboutCompanySection = ({ data, t, isDarkMode }) => {
|
|
|
582
582
|
/* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
583
583
|
"p",
|
|
584
584
|
{
|
|
585
|
-
className: `text-lg leading-relaxed mb-4 ${isDarkMode ? "text-gray-300" : "text-gray-
|
|
585
|
+
className: `text-lg leading-relaxed mb-4 ${isDarkMode ? "text-gray-300" : "text-gray-600"}`,
|
|
586
586
|
children: [
|
|
587
587
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("span", { className: "font-semibold text-white", children: [
|
|
588
588
|
'"',
|
|
589
589
|
safeT("aboutCompany.hero.trustedPartner"),
|
|
590
590
|
'"'
|
|
591
591
|
] }),
|
|
592
|
-
" ",
|
|
593
|
-
|
|
594
|
-
|
|
592
|
+
" - ",
|
|
593
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
594
|
+
"span",
|
|
595
|
+
{
|
|
596
|
+
dangerouslySetInnerHTML: { __html: shortDescription },
|
|
597
|
+
className: `inline transition-colors ${isDarkMode ? "text-gray-300" : "text-gray-600"}`
|
|
598
|
+
}
|
|
599
|
+
)
|
|
595
600
|
]
|
|
596
601
|
}
|
|
597
602
|
),
|