← back to Sdcc Awards
cypressaward/frontend/app/legal-disclaimer/page.tsx
30 lines
export default function LegalDisclaimerPage() {
return (
<div className="min-h-screen bg-white py-12">
<div className="max-w-4xl mx-auto px-4 prose prose-lg">
<h1>Legal Disclaimer</h1>
<h2>No Legal Advice</h2>
<p>The information provided on this platform is for general informational purposes only and does not constitute legal advice. No attorney-client relationship is formed through use of this platform.</p>
<h2>No Guarantee of Awards</h2>
<p>Registration on our platform does not guarantee receipt of cy pres awards. All distributions are subject to court approval and legal requirements.</p>
<h2>Accuracy of Information</h2>
<p>While we strive to maintain accurate information, we make no warranties about the completeness, reliability, or accuracy of this information.</p>
<h2>Third-Party Links</h2>
<p>Our platform may contain links to third-party websites. We are not responsible for the content or privacy practices of these sites.</p>
<h2>Professional Consultation</h2>
<p>Organizations should consult with qualified legal counsel regarding cy pres applications and compliance requirements.</p>
<h2>Limitation of Liability</h2>
<p>In no event shall Cy Pres Awards Platform be liable for any damages arising out of or in connection with the use of this platform.</p>
<h2>Contact</h2>
<p>For questions about this disclaimer, contact legal@cypresawards.org</p>
</div>
</div>
)
}