nvis-fe-cms-libs 1.1.29 → 1.1.30
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.
|
@@ -653,10 +653,7 @@ const AboutCompanySection = ({ data, t, isDarkMode }) => {
|
|
|
653
653
|
"div",
|
|
654
654
|
{
|
|
655
655
|
dangerouslySetInnerHTML: { __html: shortDescription },
|
|
656
|
-
className: `prose max-w-none mb-8 leading-relaxed transition-colors ${isDarkMode ? "prose-invert text-gray-200
|
|
657
|
-
style: {
|
|
658
|
-
textShadow: isDarkMode ? "0 1px 3px rgba(0,0,0,0.8)" : "0 1px 3px rgba(0,0,0,0.5)"
|
|
659
|
-
}
|
|
656
|
+
className: `prose max-w-none mb-8 leading-relaxed transition-colors ${isDarkMode ? "prose-invert text-gray-200" : "text-gray-100"} text-lg sm:text-xl md:text-2xl font-light tracking-wide`
|
|
660
657
|
}
|
|
661
658
|
),
|
|
662
659
|
/* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
@@ -4496,15 +4493,7 @@ const PageHighlightSection = ({ data, t, isDarkMode, imageBaseUrl = "" }) => {
|
|
|
4496
4493
|
},
|
|
4497
4494
|
index2
|
|
4498
4495
|
);
|
|
4499
|
-
}) })
|
|
4500
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "flex justify-center gap-3 mt-8", children: highlightData.map((_, index2) => /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
4501
|
-
"button",
|
|
4502
|
-
{
|
|
4503
|
-
onClick: () => setActiveTab(index2),
|
|
4504
|
-
className: `transition-all duration-300 rounded-full ${activeTab === index2 ? "w-12 h-3 bg-gradient-to-r from-blue-600 to-purple-600" : isDarkMode ? "w-3 h-3 bg-gray-600 hover:bg-gray-500" : "w-3 h-3 bg-gray-300 hover:bg-gray-400"}`
|
|
4505
|
-
},
|
|
4506
|
-
index2
|
|
4507
|
-
)) })
|
|
4496
|
+
}) })
|
|
4508
4497
|
] })
|
|
4509
4498
|
] });
|
|
4510
4499
|
};
|