import React from 'react';
export const TermsTemplate = () => (
<>
Terms of Use
Please read these terms carefully. By accessing or using this service,
you agree to be bound by these terms and conditions.
1. Service Overview
This section describes the service and its primary functions.
Replace this content with your specific service description.
2. User Responsibilities
As a user of this service, you are responsible for:
- Maintaining the confidentiality of your account
- Providing accurate and truthful information
- Complying with all applicable regulations
- Protecting privacy and confidentiality
>
);
export const PrivacyTemplate = () => (
<>
Privacy Policy
This Privacy Policy describes how we collect, use, and handle your information.
1. Information Collection
We collect information that you provide directly to us, including:
- Account information
- Usage data
- Communication preferences
2. Data Usage
We use collected information to:
- Provide and maintain our services
- Improve user experience
- Send important notifications
>
);
export const exampleDisclaimers = {
terms: {
id: 'terms',
title: 'Terms & Conditions',
content: ,
},
privacy: {
id: 'privacy',
title: 'Privacy Policy',
content: ,
},
};