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

๐Ÿ“‹ TruthCheck - Advanced Fake News Detector

Empowering you to uncover the truth

""", unsafe_allow_html=True) # About Content st.markdown("""

โ„น๏ธ About TruthCheck

TruthCheck is a cutting-edge platform designed to combat misinformation by analyzing news articles for authenticity. Powered by advanced AI, our mission is to empower usersโ€”journalists, researchers, and everyday citizensโ€”to make informed decisions in an era of digital information overload.

๐Ÿš€ Our Mission

We strive to promote transparency and trust in information by providing a reliable, user-friendly tool for fake news detection. TruthCheck leverages state-of-the-art AI models to deliver accurate, transparent results, helping users distinguish credible news from misinformation.

๐Ÿง  Our Technology

TruthCheck combines BERT's natural language understanding with BiLSTM's sequential processing to deliver robust fake news detection. Our hybrid model analyzes text for linguistic patterns, sentiment, and context, providing results with confidence scores and attention visualizations for deeper insights.

๐Ÿ“‹ How to Use TruthCheck

Using TruthCheck is simple and intuitive:

๐ŸŒ Why TruthCheck Matters

In a world where misinformation can spread rapidly, TruthCheck serves as a vital tool for verifying information. Whether you're validating news for research, journalism, or personal knowledge, our platform ensures you can trust the content you consume.

""", unsafe_allow_html=True) # Team Section st.markdown("""

๐Ÿ‘ฅ Our Team

Muhammad Adnan Tariq

AI Specialist

๐Ÿ“ง Email: adnantariq966@gmail.com

๐Ÿ“ž Phone: +92336-6569117

๐Ÿ”— LinkedIn: Linkedin

๐Ÿ”— GitHub: GitHub

Muhammad Khaqan Nasir

Lead Developer

๐Ÿ“ง Email: khaqannasir01@gmail.com

๐Ÿ“ž Phone: +92309-1111977

๐Ÿ”— LinkedIn: Linkedin

๐Ÿ”— GitHub: GitHub

""", 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()