import { useTranslation } from "react-i18next"; import Navbar from "../Components/Navbar/Navbar"; import Footer from "../Components/Footer/Footer"; const TOS = () => { const { t } = useTranslation("TOS") return (

{t("tos.pageTitle")}

{t("tos.lastUpdated")}

{t("tos.introText")}

{t("tos.tos1.title")}

{t("tos.tos1.desc").split("\n\n").map((paragraph, index) => (

{paragraph.split("\n").map((line, index) => ( {line}
))}

))}

{t("tos.tos2.title")}

{t("tos.tos2.desc").split("\n\n").map((paragraph, index) => (

{paragraph.split("\n").map((line, index) => ( {line}
))}

))}

{t("tos.tos3.title")}

{t("tos.tos3.desc").split("\n\n").map((paragraph, index) => (

{paragraph.split("\n").map((line, index) => ( {line}
))}

))}

{t("tos.tos4.title")}

{t("tos.tos4.desc").split("\n\n").map((paragraph, index) => (

{paragraph.split("\n").map((line, index) => ( {line}
))}

))}

{t("tos.tos5.title")}

{t("tos.tos5.desc").split("\n\n").map((paragraph, index) => (

{paragraph.split("\n").map((line, index) => ( {line}
))}

))}

{t("tos.tos6.title")}

{t("tos.tos6.desc").split("\n\n").map((paragraph, index) => (

{paragraph.split("\n").map((line, index) => ( {line}
))}

))}
); }; export default TOS;