← back to Sdcc Awards

cypressaward/frontend/app/terms/page.tsx

31 lines

export default function TermsPage() {
  return (
    <div className="min-h-screen bg-white py-12">
      <div className="max-w-4xl mx-auto px-4 prose prose-lg">
        <h1>Terms of Service</h1>
        <p className="text-gray-600">Last Updated: January 1, 2024</p>
        
        <h2>1. Acceptance of Terms</h2>
        <p>By accessing or using our platform, you agree to be bound by these Terms of Service.</p>
        
        <h2>2. Eligibility</h2>
        <p>Organizations must be registered 501(c)(3) nonprofits to apply for cy pres awards through our platform.</p>
        
        <h2>3. User Responsibilities</h2>
        <p>Users must provide accurate information and comply with all applicable laws and regulations.</p>
        
        <h2>4. Platform Services</h2>
        <p>We provide information and facilitation services for cy pres distributions but do not guarantee award outcomes.</p>
        
        <h2>5. Limitation of Liability</h2>
        <p>We are not liable for any indirect, incidental, or consequential damages arising from platform use.</p>
        
        <h2>6. Governing Law</h2>
        <p>These terms are governed by the laws of the State of New York.</p>
        
        <h2>7. Contact</h2>
        <p>Questions about these terms should be directed to legal@cypresawards.org</p>
      </div>
    </div>
  )
}