File size: 1,831 Bytes
56f20ae
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import streamlit as st

def main():
    st.markdown("""
    <div class="hero-section">
        <div style="display: flex; align-items: center; gap: 2rem;">
            <div style="flex: 1;">
                <h1 style="font-size: 2.5rem; color: #333333;">Privacy Policy</h1>
                <p style="font-size: 1.2rem; color: #666666;">
                    Learn how we protect your data and privacy while using TrueCheck.
                </p>
            </div>
            <div style="flex: 1;">
                <img src="https://img.freepik.com/free-vector/privacy-policy-concept-illustration_114360-103.jpg" style="width: 100%; border-radius: 12px;" alt="Privacy Policy">
            </div>
        </div>
    </div>
    """, unsafe_allow_html=True)

    st.markdown("### Privacy Policy")
    st.markdown("""
    <div style="background-color: #F4F7FA; padding: 1rem; border-radius: 8px;">
        <h3 style="color: #333333;">1. Data Collection</h3>
        <p style="color: #666666;">
            We collect news articles you submit for analysis. No personal data is stored unless explicitly provided.
        </p>
        
        <h3 style="color: #333333;">2. Data Usage</h3>
        <p style="color: #666666;">
            Submitted articles are used solely for fake news detection and are not shared with third parties.
        </p>
        
        <h3 style="color: #333333;">3. Data Security</h3>
        <p style="color: #666666;">
            We implement reasonable security measures to protect your data, but no system is completely secure.
        </p>
        
        <h3 style="color: #333333;">4. Cookies</h3>
        <p style="color: #666666;">
            TrueCheck does not use cookies or tracking technologies.
        </p>
    </div>
    """, unsafe_allow_html=True)

if __name__ == "__main__":
    main()