import streamlit as st def main(): # Updated CSS for Terms of Use page st.markdown(""" """, unsafe_allow_html=True) # Main Container st.markdown('
', unsafe_allow_html=True) # Header Section st.markdown("""

📋 TruthCheck - Advanced Fake News Detector

Terms governing the use of our services

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

📜 Terms of Use

Welcome to TruthCheck. These Terms of Use govern your access to and use of our platform and services. By using TruthCheck, you agree to comply with these terms. If you do not agree, please refrain from using our services.

🚀 Use of Services

TruthCheck provides tools for analyzing news articles for authenticity. You may use our services for lawful purposes only. You agree not to misuse the platform, including submitting malicious content or attempting to disrupt our services.

🛡️ User Responsibilities

You are responsible for the accuracy of the information you submit, such as news articles or contact details. You must not upload content that violates intellectual property rights, is defamatory, or is otherwise unlawful.

🔐 Intellectual Property

All content, features, and functionality on TruthCheck, including our algorithms and design, are owned by TruthCheck or its licensors. You may not copy, modify, or distribute our content without prior written consent.

⚖️ Limitation of Liability

TruthCheck provides services on an "as-is" basis. We do not guarantee the accuracy of our analysis and are not liable for any damages resulting from your use of our platform. Use our services at your own risk.

🔄 Changes to Terms

We may update these Terms of Use from time to time. Changes will be posted on this page, and continued use of our services after updates constitutes acceptance of the new terms.

📩 Contact Us

If you have questions about these Terms of Use, please contact us at adnantariq966@gmail.com or khaqannasir01@gmail.com.

""", unsafe_allow_html=True) # Footer st.markdown("---") st.markdown( '

💻 Developed with ❤️ using Streamlit | © 2025

', unsafe_allow_html=True ) st.markdown('
', unsafe_allow_html=True) # Close main-container if __name__ == "__main__": main()