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

{t("title")}

{t("feature1Title")}

{t("feature1Desc")}

{t("feature2Title")}

{t("feature2Desc")}

{t("feature3Title")}

{t("feature3Desc")}

{t("feature4Title")}

{t("feature4Desc")}

{t("feature5Title")}

{t("feature5Desc")}

{t("feature6Title")}

{t("feature6Desc")}

}