diff --git a/src/app/dashboard/(admin)/admin/(settings)/settings/subscription/page.tsx b/src/app/dashboard/(admin)/admin/(settings)/settings/subscription/page.tsx
new file mode 100644
index 000000000..983ebb85b
--- /dev/null
+++ b/src/app/dashboard/(admin)/admin/(settings)/settings/subscription/page.tsx
@@ -0,0 +1,9 @@
+import React from 'react'
+
+const page = () => {
+ return (
+
page
+ )
+}
+
+export default page
\ No newline at end of file
diff --git a/src/components/layouts/homepage/HowItWorks.tsx b/src/components/layouts/homepage/HowItWorks.tsx
index 5bc3fb226..0b0656033 100644
--- a/src/components/layouts/homepage/HowItWorks.tsx
+++ b/src/components/layouts/homepage/HowItWorks.tsx
@@ -5,83 +5,98 @@ import { Easy, Prebuilt, Scalable } from "./svgs";
const HowItWorks = () => {
const t = useTranslations("howItWorks");
return (
-
-
-
-
-
- {t("howItWorksTitlePrefix")}{" "}
- {t("howItWorksTitleHighlight")}
-
-
- {t("howItWorksDescription")}
-
-
-
-
-
-
-
-
- {t("prebuiltTitle")}
-
-
- {t("prebuiltDescription")}
-
-
+ <>
+
+
+
+
+
+
+
+ {t("howItWorksTitlePrefix")}
+ {" "}
+ {t("howItWorksTitleHighlight")}
+
+
+ {t("howItWorksDescription")}
+
-
-
-
+
+
+
+
+
+ {t("prebuiltTitle")}
+
+
+ {t("prebuiltDescription")}
+
+
-
-
- {t("scalableTitle")}
-
-
- {t("scalableDescription")}
-
-
-
-
-
-
+
+
+
+
+
+
+ {t("scalableTitle")}
+
+
+ {t("scalableDescription")}
+
+
-
-
- {t("easyTitle")}
-
-
- {t("easyDescription")}
-
+
+
+
+
+
+
+
+ {t("easyTitle")}
+
+
+ {t("easyDescription")}
+
+
-
+ >
);
};