import streamlit as st def main(): st.markdown("""

Terms of Use

Guidelines for using the TrueCheck platform responsibly.

Terms of Use
""", unsafe_allow_html=True) st.markdown("### Terms of Use") st.markdown("""

1. Acceptance of Terms

By accessing TrueCheck, you agree to be bound by these Terms of Use. If you do not agree, please do not use the platform.

2. Use of Service

TrueCheck is provided for personal, non-commercial use to analyze news articles. You may not use the service for illegal purposes.

3. Limitation of Liability

TrueCheck is provided "as is" without warranties. We are not liable for any damages arising from the use of this service.

4. Changes to Terms

We may update these terms periodically. Continued use of the platform constitutes acceptance of the updated terms.

""", unsafe_allow_html=True) if __name__ == "__main__": main()