mirror of
https://github.com/aydenjahola/discord-multipurpose-bot.git
synced 2024-11-23 01:05:56 +00:00
74 lines
2.8 KiB
TypeScript
74 lines
2.8 KiB
TypeScript
|
export default function TermsOfServicePage() {
|
|||
|
return (
|
|||
|
<div className="p-8 text-gray-200 bg-gray-900 min-h-screen">
|
|||
|
<h1 className="text-4xl font-bold mb-4">Terms of Service</h1>
|
|||
|
<p>Last Updated: 29/10/2024</p>
|
|||
|
|
|||
|
<section className="my-6">
|
|||
|
<h2 className="text-2xl font-semibold">1. Acceptance of Terms</h2>
|
|||
|
<p>
|
|||
|
By using our Discord bot (the "Bot"), you agree to be bound
|
|||
|
by these Terms of Service. If you do not agree to these terms, please
|
|||
|
refrain from using the Bot.
|
|||
|
</p>
|
|||
|
</section>
|
|||
|
|
|||
|
<section className="my-6">
|
|||
|
<h2 className="text-2xl font-semibold">2. Use of the Bot</h2>
|
|||
|
<p>
|
|||
|
Our Discord bot (the "Bot") is designed to enhance your
|
|||
|
server experience by providing various utilities and interactive
|
|||
|
features. These include email-based user verification, role management
|
|||
|
based on verification status, a video game-themed trivia game with
|
|||
|
leaderboard tracking, and moderation tools. By using the Bot, you
|
|||
|
agree to follow Discord’s Terms of Service and our additional rules,
|
|||
|
ensuring fair and respectful engagement in all interactions
|
|||
|
facilitated by the Bot.
|
|||
|
</p>
|
|||
|
</section>
|
|||
|
|
|||
|
<section className="my-6">
|
|||
|
<h2 className="text-2xl font-semibold">3. Prohibited Conduct</h2>
|
|||
|
<p>
|
|||
|
You agree not to misuse the Bot by engaging in activities that may
|
|||
|
harm, disrupt, or negatively affect the functionality of the Bot or
|
|||
|
violate any applicable laws.
|
|||
|
</p>
|
|||
|
</section>
|
|||
|
|
|||
|
<section className="my-6">
|
|||
|
<h2 className="text-2xl font-semibold">4. Disclaimer of Warranties</h2>
|
|||
|
<p>
|
|||
|
The Bot is provided “as-is” without warranties of any kind. We do not
|
|||
|
guarantee that the Bot will be error-free or available at all times.
|
|||
|
</p>
|
|||
|
</section>
|
|||
|
|
|||
|
<section className="my-6">
|
|||
|
<h2 className="text-2xl font-semibold">5. Limitation of Liability</h2>
|
|||
|
<p>
|
|||
|
We are not liable for any damages resulting from your use of the Bot.
|
|||
|
This limitation of liability applies to the fullest extent permitted
|
|||
|
by law.
|
|||
|
</p>
|
|||
|
</section>
|
|||
|
|
|||
|
<section className="my-6">
|
|||
|
<h2 className="text-2xl font-semibold">6. Changes to the Terms</h2>
|
|||
|
<p>
|
|||
|
We may update these Terms of Service from time to time. We encourage
|
|||
|
you to review these terms regularly for any changes.
|
|||
|
</p>
|
|||
|
</section>
|
|||
|
|
|||
|
<section className="my-6">
|
|||
|
<h2 className="text-2xl font-semibold">7. Contact Us</h2>
|
|||
|
<p>
|
|||
|
If you have any questions about these Terms of Service, please contact
|
|||
|
us at info@aydenjahola.com.
|
|||
|
</p>
|
|||
|
</section>
|
|||
|
</div>
|
|||
|
);
|
|||
|
}
|