nvis-fe-cms-libs 1.1.7 → 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,24 +582,24 @@ 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-200"}`,
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
- " "
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
+ )
593
600
  ]
594
601
  }
595
602
  ),
596
- /* @__PURE__ */ jsxRuntimeExports.jsx(
597
- "div",
598
- {
599
- dangerouslySetInnerHTML: { __html: shortDescription },
600
- className: `prose max-w-none transition-colors ${isDarkMode ? "prose-invert text-gray-300" : "text-gray-600"}`
601
- }
602
- ),
603
603
  /* @__PURE__ */ jsxRuntimeExports.jsxs(
604
604
  "div",
605
605
  {