File size: 4,661 Bytes
15c0e64
 
 
 
 
 
 
 
ba9b4cb
15c0e64
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ba9b4cb
 
 
 
 
15c0e64
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
129
130
131
<!DOCTYPE html>
<html>

<head>
    <title>Data Deletion Instructions - Elvoro Tools</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
    <link rel="icon" href="/logo.webp" type="image/webp">
    <style>
        :root {
            --bg: #f1f5f9;
            --surface: #ffffff;
            --primary: #4f46e5;
            --text: #020617;
            --text-secondary: #475569;
            --border: #cbd5e1;
        }

        body {
            font-family: 'Inter', sans-serif;
            display: flex;
            justify-content: center;
            padding: 40px;
            background-color: var(--bg);
            color: var(--text);
            margin: 0;
            -webkit-font-smoothing: antialiased;
            line-height: 1.6;
        }

        .container {
            background-color: var(--surface);
            padding: 60px 80px;
            border: 1px solid var(--border);
            border-radius: 24px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            width: 100%;
        }

        h1 {
            margin-bottom: 24px;
            font-weight: 700;
            font-size: 32px;
            letter-spacing: -0.02em;
            color: var(--text);
            border-bottom: 1px solid var(--border);
            padding-bottom: 16px;
        }

        h2 {
            margin-top: 32px;
            margin-bottom: 16px;
            font-size: 20px;
            font-weight: 600;
        }

        p,
        ul {
            color: var(--text-secondary);
            margin-bottom: 16px;
            font-size: 16px;
        }

        ul {
            padding-left: 20px;
        }

        .back-link {
            display: inline-block;
            margin-bottom: 20px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }

        .back-link:hover {
            text-decoration: underline;
        }
    </style>
</head>

<body>
    <div class="container">
        <a href="/" class="back-link">&larr; Back to Tools</a>
        <div
            style="display: flex; align-items: center; gap: 20px; border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 24px;">
            <img src="/logo.webp" alt="Elvoro Tools Logo" style="width: 60px; height: 60px; border-radius: 12px;">
            <h1 style="border-bottom: none; padding-bottom: 0; margin-bottom: 0;">Data Deletion Instructions</h1>
        </div>
        <p>Elvoro Tools is designed to safeguard your privacy. We do not retain your personal data or content after your
            request is processed.</p>

        <h2>No Data Retention</h2>
        <p>Since we do not store your user data, account information, or videos on our servers, there is typically no
            data to delete from our systems. Your content is passed directly to the social media platforms you select.
        </p>

        <h2>In-App Account Removal</h2>
        <p>You can also disconnect your linked social media accounts directly from our application interface:</p>
        <ol>
            <li>Navigate to the dashboard where your accounts are listed.</li>
            <li>Find the account you wish to remove.</li>
            <li>Click the <strong>"Remove Account"</strong> (or trash icon) button / link next to the account name.</li>
            <li>Confirm the action to remove the account from our system immediately.</li>
        </ol>

        <h2>Removing App Permissions (External)</h2>
        <p>If you wish to revoke our application's access to your social media accounts via the provider, you can do so
            directly through the respective platform's settings:</p>

        <h3>Facebook / Instagram</h3>
        <ol>
            <li>Go to your Facebook "Settings & Privacy" > "Settings".</li>
            <li>Look for "Apps and Websites".</li>
            <li>Find "Elvoro Tools" (or the app name used during authorization).</li>
            <li>Click "Remove" to revoke access.</li>
        </ol>

        <h3>Other Platforms</h3>
        <p>For other platforms like YouTube or TikTok, please visit their "Connected Apps" or "Security" settings to
            remove access.</p>

        <h2>Questions?</h2>
        <p>If you have any concerns about your data privacy, please contact our support team at <a
                href="mailto:contact@elvoro.com">contact@elvoro.com</a>.</p>
    </div>
</body>

</html>