nvis-fe-cms-libs 1.1.39 → 1.1.40
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.
|
@@ -4258,7 +4258,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
4258
4258
|
}, 5e3);
|
|
4259
4259
|
return () => clearInterval(interval);
|
|
4260
4260
|
}, [highlightData.length]);
|
|
4261
|
-
const
|
|
4261
|
+
const gradientClasses = [
|
|
4262
4262
|
"from-blue-600 to-purple-600",
|
|
4263
4263
|
"from-purple-600 to-pink-600",
|
|
4264
4264
|
"from-blue-500 to-purple-500",
|
|
@@ -4297,7 +4297,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
4297
4297
|
] }),
|
|
4298
4298
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "relative w-full px-4 sm:px-6 lg:px-8 py-16 sm:py-24", children: [
|
|
4299
4299
|
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "relative w-full", children: highlightData.map((item, index2) => {
|
|
4300
|
-
const color =
|
|
4300
|
+
const color = gradientClasses[index2 % gradientClasses.length];
|
|
4301
4301
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
4302
4302
|
"div",
|
|
4303
4303
|
{
|
|
@@ -4319,8 +4319,14 @@ var __async = (__this, __arguments, generator) => {
|
|
|
4319
4319
|
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "absolute inset-0 bg-gradient-to-t from-black/60 via-transparent to-transparent" })
|
|
4320
4320
|
] }),
|
|
4321
4321
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "p-5 lg:p-8 flex flex-col justify-center", children: [
|
|
4322
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
4323
|
-
|
|
4322
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
4323
|
+
"h1",
|
|
4324
|
+
{
|
|
4325
|
+
className: `text-3xl lg:text-4xl font-black mb-3 bg-gradient-to-r ${color} bg-clip-text text-transparent`,
|
|
4326
|
+
children: item.title
|
|
4327
|
+
}
|
|
4328
|
+
),
|
|
4329
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("p", { className: "text-description mb-6", children: item.description }),
|
|
4324
4330
|
item.features && item.features.length > 0 && /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "grid grid-cols-1 sm:grid-cols-2 gap-2 mb-6", children: item.features.map((feature, idx) => /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "flex items-start gap-2 group", children: [
|
|
4325
4331
|
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: `mt-0.5 w-4 h-4 rounded-full bg-gradient-to-r ${color} flex items-center justify-center flex-shrink-0`, children: /* @__PURE__ */ jsxRuntimeExports.jsx("svg", { className: "w-2.5 h-2.5 text-white", fill: "none", viewBox: "0 0 24 24", stroke: "currentColor", children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 3, d: "M5 13l4 4L19 7" }) }) }),
|
|
4326
4332
|
/* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: `${isDarkMode ? "text-gray-300 group-hover:text-white" : "text-gray-700 group-hover:text-gray-900"} font-medium text-xs transition-colors`, children: feature })
|
|
@@ -4372,7 +4378,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
4372
4378
|
);
|
|
4373
4379
|
}) }),
|
|
4374
4380
|
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "flex flex-wrap justify-center gap-4 mt-12", children: highlightData.map((item, index2) => {
|
|
4375
|
-
const color =
|
|
4381
|
+
const color = gradientClasses[index2 % gradientClasses.length];
|
|
4376
4382
|
return /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
4377
4383
|
"button",
|
|
4378
4384
|
{
|