WAdd privacy

This commit is contained in:
MartinBraquet
2025-07-28 12:56:53 +02:00
parent 639d651f64
commit cc85ec12f0

52
app/privacy/page.tsx Normal file
View File

@@ -0,0 +1,52 @@
export default function PrivacyPage() {
return (
<main className="max-w-4xl mx-auto p-8 text-gray-800">
<h1 className="text-3xl font-semibold text-center mb-6">Privacy Policy</h1>
<p className="text-center text-gray-500 mb-12">
Effective Date: January 1, 2025
</p>
<section className="space-y-6 text-base leading-relaxed">
<p>
At <span className="font-semibold">BayesBond</span>, we value transparency
and respect for your data. This Privacy Policy explains how we handle your information.
</p>
<h2 className="text-xl font-semibold">1. Information We Collect</h2>
<p>
We collect basic account details such as your name, email, and profile data.
Additionally, we may collect usage data to improve platform functionality.
</p>
<h2 className="text-xl font-semibold">2. How We Use Your Data</h2>
<p>
Your data is used solely to operate, personalize, and improve the platform.
We do not sell your personal information to third parties.
</p>
<h2 className="text-xl font-semibold">3. Data Storage & Security</h2>
<p>
We use modern encryption and security practices to protect your data.
However, no online system is completely secure, so use the platform responsibly.
</p>
<h2 className="text-xl font-semibold">4. Third-Party Services</h2>
<p>
BayesBond may integrate with third-party tools (e.g., Google Sign-In).
These services have their own privacy policies that we encourage you to review.
</p>
<h2 className="text-xl font-semibold">5. Your Rights</h2>
<p>
You can request deletion of your account and data at any time by contacting
support@bayesbond.com.
</p>
<p className="text-gray-600 italic mt-8">
For questions about this Privacy Policy, reach out at support@bayesbond.com.
</p>
</section>
</main>
);
}