← back to Sdcc Awards
cypressaward/frontend/app/privacy/page.tsx
28 lines
export default function PrivacyPage() {
return (
<div className="min-h-screen bg-white py-12">
<div className="max-w-4xl mx-auto px-4 prose prose-lg">
<h1>Privacy Policy</h1>
<p className="text-gray-600">Effective Date: January 1, 2024</p>
<h2>1. Information We Collect</h2>
<p>We collect information you provide directly to us, including organization details, contact information, and cy pres application data.</p>
<h2>2. How We Use Your Information</h2>
<p>We use collected information to facilitate cy pres distributions, match organizations with opportunities, and improve our services.</p>
<h2>3. Information Sharing</h2>
<p>We share information only with courts, law firms, and settlement administrators as necessary for cy pres award distributions.</p>
<h2>4. Data Security</h2>
<p>We implement appropriate technical and organizational measures to protect your information against unauthorized access.</p>
<h2>5. Your Rights</h2>
<p>You have the right to access, update, or delete your personal information. Contact us to exercise these rights.</p>
<h2>6. Contact Us</h2>
<p>For privacy-related questions, contact our Data Protection Officer at privacy@cypresawards.org</p>
</div>
</div>
)
}