nvis-fe-cms-libs 1.1.8 → 1.1.9

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,19 +582,18 @@ 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-600"}`,
585
+ className: `text-lg mb-4 flex flex-wrap items-center ${isDarkMode ? "text-gray-100" : "text-gray-900"}`,
586
586
  children: [
587
- /* @__PURE__ */ jsxRuntimeExports.jsxs("span", { className: "font-semibold text-white", children: [
587
+ /* @__PURE__ */ jsxRuntimeExports.jsxs("span", { className: "font-semibold text-yellow-400 whitespace-nowrap", children: [
588
588
  '"',
589
589
  safeT("aboutCompany.hero.trustedPartner"),
590
590
  '"'
591
591
  ] }),
592
- " - ",
593
592
  /* @__PURE__ */ jsxRuntimeExports.jsx(
594
593
  "span",
595
594
  {
596
595
  dangerouslySetInnerHTML: { __html: shortDescription },
597
- className: `inline transition-colors ${isDarkMode ? "text-gray-300" : "text-gray-600"}`
596
+ className: "[&_p]:inline [&_p]:m-0 ml-1"
598
597
  }
599
598
  )
600
599
  ]
@@ -603,11 +602,12 @@ const AboutCompanySection = ({ data, t, isDarkMode }) => {
603
602
  /* @__PURE__ */ jsxRuntimeExports.jsxs(
604
603
  "div",
605
604
  {
606
- className: `inline-flex items-center px-4 py-2 rounded-full border text-sm font-medium ${isDarkMode ? "bg-gray-800/70 border-gray-600 text-gray-300" : "bg-white/20 border-white/40 text-white"}`,
605
+ className: `inline-flex items-center px-4 py-2 rounded-full border text-sm font-medium mb-6 ${isDarkMode ? "bg-gray-800/70 border-gray-600 text-gray-300" : "bg-white/20 border-white/40 text-white"}`,
607
606
  children: [
608
607
  "🚀 ",
609
608
  safeT("aboutCompany.hero.establishedYear", { year: establishedYear }),
610
- " - ",
609
+ " -",
610
+ " ",
611
611
  safeT("aboutCompany.hero.experience", { years: experienceYears })
612
612
  ]
613
613
  }