File size: 3,978 Bytes
775339a
 
 
bb31e81
775339a
bb31e81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
775339a
 
 
 
bb31e81
775339a
bb31e81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
775339a
 
 
 
 
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
import streamlit as st

def main():
    # Custom CSS for Privacy Policy page
    st.markdown("""
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

        .stApp {
            font-family: 'Poppins', sans-serif;
            background: #f8fafc;
            min-height: 100vh;
            color: #1a202c;
        }

        #MainMenu {visibility: visible;}
        footer {visibility: hidden;}
        .stDeployButton {display: none;}
        header {visibility: hidden;}
        .stApp > header {visibility: hidden;}

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem;
        }

        .header {
            padding: 1.5rem 0;
            text-align: center;
        }

        .header-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a202c;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .section {
            margin-bottom: 2rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .section-text {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.5;
            max-width: 800px;
            margin: 0 auto;
        }

        .stSidebar {
            background: #ffffff;
            border-right: 1px solid #e5e7eb;
        }

        .stSidebar .sidebar-content {
            padding: 1rem;
        }
    </style>
    """, unsafe_allow_html=True)


    # Header
    st.markdown("""
    <div class="header">
        <div class="container">
            <h1 class="header-title">πŸ›‘οΈ TruthCheck</h1>
        </div>
    </div>
    """, unsafe_allow_html=True)

    # Privacy Policy Content
    st.markdown("""
    <div class="container">
        <div class="section">
            <h2 class="section-title">πŸ”’ Privacy Policy</h2>
            <p class="section-text">
                At TruthCheck, we are committed to protecting your privacy. This Privacy Policy outlines how we collect, use, and safeguard your data.
            </p>
        </div>
        <div class="section">
            <h3 class="section-title">πŸ“Š Data Collection</h3>
            <p class="section-text">
                We collect data you provide, such as news articles submitted for analysis and optional contact form submissions. We may also collect usage data to improve our services.
            </p>
        </div>
        <div class="section">
            <h3 class="section-title">πŸ” Data Usage</h3>
            <p class="section-text">
                Your data is used solely to provide fake news detection services and respond to inquiries. We do not sell or share your personal information with third parties.
            </p>
        </div>
        <div class="section">
            <h3 class="section-title">πŸ›‘οΈ Data Security</h3>
            <p class="section-text">
                We implement industry-standard security measures to protect your data from unauthorized access or disclosure.
            </p>
        </div>
        <div class="section">
            <h3 class="section-title">πŸͺ Cookies</h3>
            <p class="section-text">
                TruthCheck may use cookies to enhance user experience. You can disable cookies in your browser settings, but this may affect functionality.
            </p>
        </div>
        <div class="section">
            <h3 class="section-title">πŸ“© Contact Us</h3>
            <p class="section-text">
                If you have questions about our Privacy Policy, please contact us at [email protected].
            </p>
        </div>
    </div>
    """, unsafe_allow_html=True)

if __name__ == "__main__":
    main()