mike/frontend/src/app/privacy/page.tsx
2026-05-08 20:45:16 +08:00

160 lines
7.6 KiB
TypeScript

"use client";
export default function PrivacyPage() {
return (
<main className="w-full px-6 py-6 md:py-10">
<div className="max-w-4xl mx-auto">
<h1 className="text-4xl font-medium font-eb-garamond mb-8">
Privacy Policy
</h1>
<section className="mb-6">
<h2 className="text-xl font-medium mb-3">
1. Introduction
</h2>
<p className="text-sm text-gray-700 leading-relaxed">
Mike ("we," "our," or "us") is committed to protecting
your privacy. This Privacy Policy explains how we
collect, use, disclose, and safeguard your information
when you use our legal research service.
</p>
</section>
<section className="mb-6">
<h2 className="text-xl font-medium mb-3">
2. Information We Collect
</h2>
<p className="text-sm text-gray-700 leading-relaxed mb-2">
We collect information that you provide directly to us,
including:
</p>
<ul className="list-disc pl-6 mb-3 text-sm text-gray-700 space-y-1">
<li>Email address and account credentials</li>
<li>Search queries and research history</li>
<li>Chat conversations with our AI assistant</li>
<li>Usage data and preferences within the service</li>
</ul>
</section>
<section className="mb-6">
<h2 className="text-xl font-medium mb-3">
3. How We Use Your Information
</h2>
<p className="text-sm text-gray-700 leading-relaxed mb-2">
We use the information we collect to:
</p>
<ul className="list-disc pl-6 mb-3 text-sm text-gray-700 space-y-1">
<li>Provide, maintain, and improve our services</li>
<li>Process your requests and transactions</li>
<li>Send you technical notices and support messages</li>
<li>Respond to your comments and questions</li>
<li>Develop new features and improve our AI models</li>
</ul>
</section>
<section className="mb-6">
<h2 className="text-xl font-medium mb-3">
4. Information Sharing and Disclosure
</h2>
<p className="text-sm text-gray-700 leading-relaxed mb-2">
We do not sell your personal information. We may share
your information only in the following circumstances:
</p>
<ul className="list-disc pl-6 mb-3 text-sm text-gray-700 space-y-1">
<li>With your consent</li>
<li>
To comply with legal obligations or court orders
</li>
<li>
To protect our rights, privacy, safety, or property
</li>
<li>
With service providers who assist in our operations
</li>
</ul>
</section>
<section className="mb-6">
<h2 className="text-xl font-medium mb-3">
5. Data Security
</h2>
<p className="text-sm text-gray-700 leading-relaxed">
We implement appropriate technical and organizational
measures to protect your personal information. However,
no method of transmission over the Internet or
electronic storage is 100% secure, and we cannot
guarantee absolute security.
</p>
</section>
<section className="mb-6">
<h2 className="text-xl font-medium mb-3">
6. Data Retention
</h2>
<p className="text-sm text-gray-700 leading-relaxed">
We retain your personal information for as long as
necessary to provide our services and fulfill the
purposes outlined in this Privacy Policy, unless a
longer retention period is required by law.
</p>
</section>
<section className="mb-6">
<h2 className="text-xl font-medium mb-3">7. Your Rights</h2>
<p className="text-sm text-gray-700 leading-relaxed mb-2">
You have the right to:
</p>
<ul className="list-disc pl-6 mb-3 text-sm text-gray-700 space-y-1">
<li>Access and receive a copy of your data</li>
<li>Correct inaccurate or incomplete data</li>
<li>Request deletion of your data</li>
<li>Object to or restrict data processing</li>
<li>Data portability</li>
</ul>
</section>
<section className="mb-6">
<h2 className="text-xl font-medium mb-3">
8. Cookies and Tracking Technologies
</h2>
<p className="text-sm text-gray-700 leading-relaxed">
We use cookies and similar tracking technologies to
collect and track information about your usage of our
service. You can control cookies through your browser
settings.
</p>
</section>
<section className="mb-6">
<h2 className="text-xl font-medium mb-3">
9. Children's Privacy
</h2>
<p className="text-sm text-gray-700 leading-relaxed">
Our service is not intended for children under 13 years
of age. We do not knowingly collect personal information
from children under 13.
</p>
</section>
<section className="mb-6">
<h2 className="text-xl font-medium mb-3">
10. Changes to This Privacy Policy
</h2>
<p className="text-sm text-gray-700 leading-relaxed">
We may update this Privacy Policy from time to time. We
will notify you of any changes by posting the new
Privacy Policy on this page and updating the "Last
updated" date.
</p>
</section>
<section className="mb-6">
<h2 className="text-xl font-medium mb-3">11. Contact Us</h2>
<p className="text-sm text-gray-700 leading-relaxed">
If you have any questions about this Privacy Policy,
please contact us at team@mikeoss.com.
</p>
</section>
</div>
</main>
);
}