import React from "react"; import { TERMS_AND_CONDITIONS } from "@/constants"; const TermsOfService = () => { const renderContent = () => { return TERMS_AND_CONDITIONS.split("\n").map((line, index) => { if (line.startsWith("**")) { return (
{line}
); } }); }; return (