nvis-fe-cms-libs 2.1.13 → 2.1.14

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.
@@ -547,7 +547,7 @@ const AboutCompanySection = ({ data, t, isDarkMode, imageBaseUrl = "" }) => {
547
547
  };
548
548
  const logoUrl = getLogoUrl(logo);
549
549
  return /* @__PURE__ */ jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [
550
- /* @__PURE__ */ jsxRuntimeExports.jsxs("section", { className: "relative min-h-[80vh] flex items-center justify-center overflow-hidden pt-8 bg-white", children: [
550
+ /* @__PURE__ */ jsxRuntimeExports.jsxs("section", { className: `relative min-h-[80vh] flex items-center justify-center overflow-hidden pt-8 ${isDarkMode ? "bg-gray-900" : "bg-white"}`, children: [
551
551
  /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "absolute inset-0", children: [
552
552
  /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "absolute inset-0", children: [
553
553
  /* @__PURE__ */ jsxRuntimeExports.jsx(
@@ -596,17 +596,17 @@ const AboutCompanySection = ({ data, t, isDarkMode, imageBaseUrl = "" }) => {
596
596
  }
597
597
  }
598
598
  ) : /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "text-2xl font-bold text-gradient-brand", children: shortName }) }) }),
599
- /* @__PURE__ */ jsxRuntimeExports.jsx("h1", { className: "text-5xl lg:text-6xl font-extrabold tracking-tight mb-4 text-gradient-brand drop-shadow-[0_2px_6px_rgba(0,0,0,0.4)]", children: name })
599
+ /* @__PURE__ */ jsxRuntimeExports.jsx("h1", { className: `text-5xl lg:text-6xl font-extrabold tracking-tight mb-4 ${isDarkMode ? "text-white" : "text-gray-900"} drop-shadow-[0_2px_6px_rgba(0,0,0,0.4)]`, children: name })
600
600
  ] }),
601
601
  /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "max-w-4xl mx-auto", children: [
602
602
  /* @__PURE__ */ jsxRuntimeExports.jsx(
603
603
  "div",
604
604
  {
605
605
  dangerouslySetInnerHTML: { __html: shortDescription },
606
- className: "prose max-w-none mb-8 leading-relaxed text-inverse text-lg sm:text-xl md:text-2xl font-light tracking-wide"
606
+ className: `prose max-w-none mb-8 leading-relaxed text-lg sm:text-xl md:text-2xl font-light tracking-wide ${isDarkMode ? "text-gray-300" : "text-gray-700"}`
607
607
  }
608
608
  ),
609
- /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "inline-flex items-center px-4 py-2 rounded-full border bg-white/20 border-white/40 text-inverse text-small font-medium", children: [
609
+ /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: `inline-flex items-center px-4 py-2 rounded-full border ${isDarkMode ? "bg-gray-800 border-gray-700 text-gray-200" : "bg-gray-100 border-gray-300 text-gray-800"} text-small font-medium`, children: [
610
610
  safeT("aboutCompany.hero.establishedYear", { year: establishedYear }),
611
611
  " - ",
612
612
  safeT("aboutCompany.hero.experience", { years: experienceYears })