import React, { useEffect, useState } from 'react'; import type { ReactElement } from 'react'; import Head from 'next/head'; import LayoutGuest from '../layouts/Guest'; import { getPageTitle } from '../config'; export default function PrivacyPolicy() { const title = 'German Verbs Admin'; const [projectUrl, setProjectUrl] = useState(''); useEffect(() => { setProjectUrl(location.origin); }, []); const Introduction = () => { return ( <>

1. Introduction

{/* eslint-disable-next-line react/no-unescaped-entities */} We at {title} ("we", "us", "our") are committed to protecting your privacy. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you visit our website {projectUrl}, use our services, or interact with us in other ways. By using our services, you agree to the collection and use of information in accordance with this policy.

); }; const Information = () => { return ( <>

2. Information We Collect

2.1 Personal Identification Information

We collect various types of personal information in connection with the services we provide, including:

2.2 Technical Data

We automatically collect certain information when you visit, use, or navigate our services. This information may include:

2.3 Cookies and Tracking Technologies

We use cookies and similar tracking technologies to track the activity on our service and hold certain information. You can instruct your browser to refuse all cookies or to indicate when a cookie is being sent.

); }; const HowToUser = () => { return ( <>

3. How We Use Your Information

We use the information we collect in various ways, including to:

); }; const DataProtection = () => { return ( <>

4. Data Protection and Security

We implement a variety of security measures to maintain the safety of your personal information. These measures include:

); }; const Sharing = () => { return ( <>

5. Sharing Your Information

We do not sell, trade, or otherwise transfer your Personally Identifiable Information to outside parties without your consent, except in the following cases:

); }; const ProtectionRights = () => { return ( <>

6. Your Data Protection Rights

Depending on your location, you may have the following rights regarding your personal data:

); }; const DataTransfers = () => { return ( <>

7. International Data Transfers

Your information, including personal data, may be transferred to — and maintained on — computers located outside of your state, province, country, or other governmental jurisdiction where the data protection laws may differ from those of your jurisdiction. We will take all steps reasonably necessary to ensure that your data is treated securely and in accordance with this Privacy Policy.

); }; const RetentionOfData = () => { return ( <>

8. Retention of Data

We will retain your personal data only for as long as is necessary for the purposes set out in this Privacy Policy. We will retain and use your personal data to the extent necessary to comply with our legal obligations, resolve disputes, and enforce our policies.

); }; const ChangePrivacy = () => { return ( <>

9. Changes to This Privacy Policy

We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page. You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.

); }; const ContactUs = () => { return ( <>

10. Contact Us

If you have any questions about this Privacy Policy, please contact us:

By email:{' '} [support@flatlogic.com]
By visiting this page on our website:{' '} Contact Us
); }; return (
{getPageTitle('Privacy Policy')}

Privacy Policy

); } PrivacyPolicy.getLayout = function getLayout(page: ReactElement) { return {page}; };