nvis-fe-cms-libs 1.1.9 → 1.1.10
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.
|
@@ -579,35 +579,21 @@ const AboutCompanySection = ({ data, t, isDarkMode }) => {
|
|
|
579
579
|
)
|
|
580
580
|
] }),
|
|
581
581
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "max-w-4xl mx-auto", children: [
|
|
582
|
-
/* @__PURE__ */ jsxRuntimeExports.
|
|
583
|
-
"
|
|
582
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
583
|
+
"div",
|
|
584
584
|
{
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
/* @__PURE__ */ jsxRuntimeExports.jsxs("span", { className: "font-semibold text-yellow-400 whitespace-nowrap", children: [
|
|
588
|
-
'"',
|
|
589
|
-
safeT("aboutCompany.hero.trustedPartner"),
|
|
590
|
-
'"'
|
|
591
|
-
] }),
|
|
592
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
593
|
-
"span",
|
|
594
|
-
{
|
|
595
|
-
dangerouslySetInnerHTML: { __html: shortDescription },
|
|
596
|
-
className: "[&_p]:inline [&_p]:m-0 ml-1"
|
|
597
|
-
}
|
|
598
|
-
)
|
|
599
|
-
]
|
|
585
|
+
dangerouslySetInnerHTML: { __html: shortDescription },
|
|
586
|
+
className: `prose max-w-none transition-colors ${isDarkMode ? "prose-invert text-gray-300" : "text-gray-600"}`
|
|
600
587
|
}
|
|
601
588
|
),
|
|
602
589
|
/* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
603
590
|
"div",
|
|
604
591
|
{
|
|
605
|
-
className: `inline-flex items-center px-4 py-2 rounded-full border text-sm font-medium
|
|
592
|
+
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"}`,
|
|
606
593
|
children: [
|
|
607
594
|
"🚀 ",
|
|
608
595
|
safeT("aboutCompany.hero.establishedYear", { year: establishedYear }),
|
|
609
|
-
" -",
|
|
610
|
-
" ",
|
|
596
|
+
" - ",
|
|
611
597
|
safeT("aboutCompany.hero.experience", { years: experienceYears })
|
|
612
598
|
]
|
|
613
599
|
}
|