"use client"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; interface DisclaimerModalProps { isOpen: boolean; onClose: () => void; } export const DisclaimerModalComponent = ({ isOpen, onClose }: DisclaimerModalProps) => { if (!isOpen) return null; return (
Legal Terms & Disclaimers

Terms of Service & User Agreement

By accessing and using this collaborative text editing service ("Osborne"), you acknowledge that you have read, understood, and agree to be bound by these terms and conditions. If you do not agree to these terms, please do not use our service.

Service Description

Osborne is a real-time collaborative text editing platform that allows multiple users to simultaneously edit documents, share code, and collaborate on text-based projects. The service is provided "as is" without warranties of any kind.

User Content & Liability Disclaimer

IMPORTANT: Users are solely responsible for all content they create, upload, share, or collaborate on through our platform. We do not monitor, review, or control user-generated content.

Content Liability Waiver

  • We are not responsible for any content created or shared by users
  • We do not endorse, verify, or guarantee the accuracy of user content
  • Users assume full legal responsibility for their content and actions
  • We reserve the right to remove content that violates our terms or applicable laws

Privacy & Data Handling

Your privacy is important to us. Here's how we handle your data:

  • Document Content: Stored temporarily for collaboration; users control persistence
  • No Personal Data Collection: We don't require registration or collect personal information
  • Session Data: Room codes and collaborative sessions are temporary
  • No Tracking: We don't use analytics or tracking cookies

Acceptable Use Policy

✓ Permitted Uses:

  • Collaborative document editing and code sharing
  • Educational and professional projects
  • Open source development and documentation
  • Creative writing and content creation

✗ Prohibited Uses:

  • Illegal activities or content that violates applicable laws
  • Harassment, hate speech, or discriminatory content
  • Copyrighted material without proper authorization
  • Malicious code, viruses, or security threats
  • Spam, phishing, or fraudulent activities

Service Availability & Technical Disclaimers

No Uptime Guarantees: Service availability is not guaranteed; planned and unplanned outages may occur.

Data Loss Risk: Users should maintain backups; we're not liable for any data loss or corruption.

Beta Software: This service may contain bugs, errors, or incomplete features.

No Support Obligation: Technical support is provided on a best-effort basis.

Limitation of Liability

TO THE MAXIMUM EXTENT PERMITTED BY LAW, WE SHALL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, INCLUDING BUT NOT LIMITED TO LOSS OF PROFITS, DATA, OR USE, ARISING OUT OF OR RELATING TO YOUR USE OF THE SERVICE.

Intellectual Property

Users retain ownership of their original content. By using our service, users grant us a limited license to host, store, and facilitate collaboration on their content solely for the purpose of providing the service.

The Osborne platform, its code, design, and functionality are protected by intellectual property laws and remain the property of WebArk and its licensors.

Termination

We reserve the right to terminate or suspend access to our service at any time, without prior notice, for conduct that we believe violates these terms or is harmful to other users, us, or third parties.

Governing Law

These terms shall be interpreted and governed in accordance with applicable laws. Any disputes shall be resolved through appropriate legal channels.

Last Updated: October 31, 2025
These terms are subject to change. Continued use of the service constitutes acceptance of any modifications. For questions or concerns, contact: mail@webark.in

); };