diff --git a/src/components/layouts/homepage/HowItWorks.tsx b/src/components/layouts/homepage/HowItWorks.tsx
index 0b0656033..1b96b066c 100644
--- a/src/components/layouts/homepage/HowItWorks.tsx
+++ b/src/components/layouts/homepage/HowItWorks.tsx
@@ -5,98 +5,106 @@ import { Easy, Prebuilt, Scalable } from "./svgs";
const HowItWorks = () => {
const t = useTranslations("howItWorks");
return (
- <>
-
-
-
-
-
-
-
- {t("howItWorksTitlePrefix")}
- {" "}
- {t("howItWorksTitleHighlight")}
-
-
- {t("howItWorksDescription")}
-
-
+
+
+
+ {/* Text Content */}
+
+
+ {t("howItWorksTitlePrefix")}{" "}
+ {t("howItWorksTitleHighlight")}
+
+
+ {t("howItWorksDescription")}
+
+
-
-
-
-
-
- {t("prebuiltTitle")}
-
-
- {t("prebuiltDescription")}
-
-
-
+
+
+
+
-
-
-
-
-
-
- {t("scalableTitle")}
-
-
- {t("scalableDescription")}
-
-
-
+
+
+
+
-
-
-
-
-
-
- {t("easyTitle")}
-
-
- {t("easyDescription")}
-
-
+
+
+
+
+
+ {t("prebuiltTitle")}
+
+
+ {t("prebuiltDescription")}
+
+
+
+
+
+
+
+ {t("scalableTitle")}
+
+
+ {t("scalableDescription")}
+
+
+
+
+
+
+
+ {t("easyTitle")}
+
+
+ {t("easyDescription")}
+
- >
+
);
};