nvis-fe-cms-libs 2.0.1 → 2.0.2

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.
@@ -390,19 +390,19 @@ const CompanyValues = ({ companyData, t, isDarkMode }) => {
390
390
  };
391
391
  const items = [
392
392
  {
393
- icon: "💡",
393
+ icon: "light_bulb",
394
394
  title: t("about.companyValues.vision") || "Tầm nhìn",
395
395
  text: cleanHtmlContent(safeCompanyData.vision) || "Tầm nhìn của chúng tôi sẽ được cập nhật trong thời gian tới.",
396
396
  bgClass: "bg-gradient-brand"
397
397
  },
398
398
  {
399
- icon: "🚀",
399
+ icon: "rocket",
400
400
  title: t("about.companyValues.mission") || "Sứ mệnh",
401
401
  text: cleanHtmlContent(safeCompanyData.mission) || "Sứ mệnh của chúng tôi sẽ được cập nhật trong thời gian tới.",
402
402
  bgClass: "bg-gradient-accent"
403
403
  },
404
404
  {
405
- icon: "💎",
405
+ icon: "diamond",
406
406
  title: t("about.companyValues.coreValues") || "Giá trị cốt lõi",
407
407
  text: cleanHtmlContent(safeCompanyData.coreValues) || "Giá trị cốt lõi của chúng tôi sẽ được cập nhật trong thời gian tới.",
408
408
  bgClass: "bg-gradient-brand"
@@ -452,7 +452,7 @@ const CompanyValues = ({ companyData, t, isDarkMode }) => {
452
452
  "div",
453
453
  {
454
454
  className: `w-10 h-10 rounded-lg flex items-center justify-center text-white text-xl flex-shrink-0 ${item.bgClass}`,
455
- children: item.icon
455
+ children: /* @__PURE__ */ jsxRuntimeExports.jsx(DynamicIcon, { name: item.icon, className: "w-6 h-6" })
456
456
  }
457
457
  ),
458
458
  /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "flex-1 min-w-0", children: [
@@ -567,7 +567,6 @@ const AboutCompanySection = ({ data, t, isDarkMode, imageBaseUrl = "" }) => {
567
567
  }
568
568
  ),
569
569
  /* @__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: [
570
- "🚀 ",
571
570
  safeT("aboutCompany.hero.establishedYear", { year: establishedYear }),
572
571
  " - ",
573
572
  safeT("aboutCompany.hero.experience", { years: experienceYears })