> ## Documentation Index
> Fetch the complete documentation index at: https://docs.yuvrajverma.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Legal Pages Configuration

> Customize Privacy Policy and Terms of Service

<Callout icon="link-horizontal" color="#2fbe1f">**Configuration Files:** `config/legal/privacy.ts` & `config/legal/terms.ts`</Callout>

<Warning>
  **LEGAL DISCLAIMER:** These templates are starting points only. Consult a lawyer to ensure compliance with laws in your jurisdiction (GDPR, CCPA, etc.).
</Warning>

## **Privacy Policy**

<Note>
  Configure at `config/legal/privacy.ts`.
</Note>

### Basic Information

```typescript theme={null}
export const privacyConfig = {
  lastUpdated: "January 29, 2026",
  
  sections: [
    // Your privacy policy sections...
  ]
};
```

**Update these fields:**

* `lastUpdated` - Today's date when you make changes
* `sections` - Array of privacy policy content sections (see below)

### Content Sections

The privacy policy is organized into sections:

```typescript theme={null}
sections: [
  {
    title: "1. Introduction",
    content: [
      "Paragraph 1 text here.",
      "Paragraph 2 text here.",
    ],
  },
  {
    title: "2. Information We Collect",
    content: [
      "Personal Information: ...",
      "Technical Data: ...",
    ],
  },
  // More sections...
]
```

**Standard sections included:**

1. Introduction
2. Information We Collect
3. How We Use Your Information
4. Information Sharing and Disclosure
5. Data Security
6. Data Retention
7. Your Privacy Rights
8. Cookies and Tracking
9. Third-Party Services
10. Children's Privacy
11. International Data Transfers
12. Changes to Privacy Policy
13. Contact Us

## Terms of Service

<Info>
  Configure at `config/legal/terms.ts`.
</Info>

### **Basic Information**

```typescript theme={null}
export const termsConfig = {
  lastUpdated: "January 29, 2026",
  
  sections: [
    // Your terms of service sections...
  ]
};
```

### Content Section

```typescript theme={null}
sections: [
  {
    title: "1. Acceptance of Terms",
    content: [
      "By using our services, you agree to these terms...",
    ],
  },
  {
    title: "2. Account Terms",
    content: [
      "You must provide accurate information...",
      "You are responsible for account security...",
    ],
  },
  // More sections...
]
```

**Standard sections included:**

1. Acceptance of Terms
2. Account Terms
3. Payment and Refunds
4. Service Level Agreement (SLA)
5. Acceptable Use Policy
6. Server Resources and Fair Usage
7. Content and Data
8. DDoS Protection and Security
9. Service Modifications
10. Termination
11. Disclaimers and Limitations
12. Indemnification
13. Governing Law
14. Contact Information
