mirror of
https://github.com/aydenjahola/discord-multipurpose-bot.git
synced 2024-11-22 16:55:55 +00:00
65 lines
2.2 KiB
XML
65 lines
2.2 KiB
XML
export default function PrivacyPolicyPage() {
|
||
return (
|
||
<div className="p-8 text-gray-200 bg-gray-900 min-h-screen">
|
||
<h1 className="text-4xl font-bold mb-4">Privacy Policy</h1>
|
||
<p>Last Updated: 29/10/2024</p>
|
||
|
||
<section className="my-6">
|
||
<h2 className="text-2xl font-semibold">1. Information We Collect</h2>
|
||
<p>
|
||
Our Bot collects certain information from users to provide its
|
||
features. This may include Discord user IDs, server IDs, and any
|
||
necessary content to perform bot commands. No sensitive personal data
|
||
is collected.
|
||
</p>
|
||
</section>
|
||
|
||
<section className="my-6">
|
||
<h2 className="text-2xl font-semibold">
|
||
2. How We Use Your Information
|
||
</h2>
|
||
<p>
|
||
The information collected by the Bot is used solely to operate and
|
||
improve its functionality. We do not share or sell any user data to
|
||
third parties.
|
||
</p>
|
||
</section>
|
||
|
||
<section className="my-6">
|
||
<h2 className="text-2xl font-semibold">3. Data Retention</h2>
|
||
<p>
|
||
We retain data only as long as necessary to provide the Bot’s
|
||
services. If you would like your data removed, please contact us, and
|
||
we will make reasonable efforts to delete it.
|
||
</p>
|
||
</section>
|
||
|
||
<section className="my-6">
|
||
<h2 className="text-2xl font-semibold">4. Security</h2>
|
||
<p>
|
||
We take reasonable steps to protect the information collected by the
|
||
Bot. However, we cannot guarantee absolute security due to the nature
|
||
of internet services.
|
||
</p>
|
||
</section>
|
||
|
||
<section className="my-6">
|
||
<h2 className="text-2xl font-semibold">
|
||
5. Changes to the Privacy Policy
|
||
</h2>
|
||
<p>
|
||
We may update this Privacy Policy periodically. Please review this
|
||
page regularly to stay informed about any changes.
|
||
</p>
|
||
</section>
|
||
|
||
<section className="my-6">
|
||
<h2 className="text-2xl font-semibold">6. Contact Us</h2>
|
||
<p>
|
||
If you have any questions regarding this Privacy Policy, please
|
||
contact us at info@aydenjahola.com.
|
||
</p>
|
||
</section>
|
||
</div>
|
||
);
|
||
}
|