import { useTranslations } from "next-intl" export default function MermsFeaturesSectionTwo() { const t = useTranslations("FeaturesSectionTwo") return ( <>

{t("title")}

{t("description")}

  • {t("list1")}

  • {t("list2")}

{t("websiteTitle")}

{t("websiteDesc")}

{t("ecosystemTitle")}

{t("ecosystemDesc")}

{t("addonsTitle")}

{t("addonsDesc")}

{t("unifiedTitle")}

{t("unifiedDesc")}

) }