118 lines
5.2 KiB
TypeScript
118 lines
5.2 KiB
TypeScript
function PrivacyPolicyModal() {
|
||
return (
|
||
<div className="lg:rounded-[1.111vw] bg-white rounded-2xl lg:p-[2.222vw] lg:w-[38.889vw] p-8">
|
||
<div className="bg-[#00BED7] lg:h-[0.139vw] h-0.5 lg:w-[8.646vw] lg:rounded-[0.208vw] rounded-[3px]" />
|
||
<h2 className="text-subheadline-m font-semibold py-6">
|
||
Privacy Policy for IRTH Group and its companies:
|
||
</h2>
|
||
<div className="space-y-4">
|
||
<p className="text-caption-s">
|
||
At IRTH Group and its companies, we are committed to protecting the
|
||
privacy and security of your personal information. This Privacy Policy
|
||
explains how we collect, use, disclose, and safeguard your information
|
||
when you visit our website or use our services.
|
||
</p>
|
||
|
||
<div className="space-y-2">
|
||
<p className="text-caption-m">Information We Collect:</p>
|
||
<ul className="text-caption-s list-disc ml-5">
|
||
<li>
|
||
Personal Information: We may collect personal information such as
|
||
your name, contact details, and address when you voluntarily
|
||
provide it to us, such as when you register through a form or
|
||
request information
|
||
</li>
|
||
<li>
|
||
Usage Information: We automatically collect certain information
|
||
about your device and usage of our website, such as your IP
|
||
address, browser type, operating system, pages visited, and time
|
||
spent on each page. This information helps us analyze trends,
|
||
administer the website, and improve our services.
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<p className="text-caption-m">How We Use Your Information:</p>
|
||
<ul className="text-caption-s list-disc ml-5">
|
||
<li>
|
||
To Provide Services:We use your personal information to deliver
|
||
the services you request, such as facilitating property
|
||
transactions, responding to inquiries, and sending you relevant
|
||
updates and notifications
|
||
</li>
|
||
<li>
|
||
To Improve Our Services: We analyze usage data to understand how
|
||
our website is accessed and used, identify areas for improvement,
|
||
and enhance the user experience.
|
||
</li>
|
||
<li>
|
||
To Communicate with You: We may use your contact information to
|
||
communicate with you about properties, services, promotions, and
|
||
updates. You can opt out of receiving marketing communications at
|
||
any time by following the unsubscribe instructions provided in our
|
||
emails or contacting us directly.
|
||
</li>
|
||
<li>
|
||
To Protect Our Rights: We may use your information to enforce our
|
||
terms of service, protect our rights, or comply with legal
|
||
obligations.
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<p className="text-caption-m">Information Sharing and Disclosure:</p>
|
||
<p className="text-caption-s">
|
||
We may share your personal information with trusted third-party
|
||
service providers who assist us in operating our website, conducting
|
||
business, or servicing you, as long as those parties agree to keep
|
||
this information confidential. We may also disclose your information
|
||
when required by law, to enforce our site policies, or to protect
|
||
our or others' rights, property, or safety.
|
||
</p>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<p className="text-caption-m">Data Security:</p>
|
||
<p className="text-caption-s">
|
||
We implement a variety of security measures to safeguard your
|
||
personal information and protect it from unauthorized access,
|
||
alteration, disclosure, or destruction. However, no method of
|
||
transmission over the Internet or electronic storage is 100% secure,
|
||
so we cannot guarantee absolute security.
|
||
</p>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<p className="text-caption-m">Your Rights:</p>
|
||
<p className="text-caption-s">
|
||
You have the right to access, update, or delete your personal
|
||
information at any time. You can do this by contacting us directly.
|
||
We will make reasonable efforts to accommodate your request, subject
|
||
to any legal or contractual obligations.
|
||
</p>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<p className="text-caption-m">Contact Us:</p>
|
||
<p className="text-caption-s">
|
||
If you have any questions or concerns about this Privacy Policy or
|
||
our privacy practices, please contact us at info@irth.ae
|
||
</p>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<p className="text-caption-m">Effective Date:</p>
|
||
<p className="text-caption-s">
|
||
This Privacy Policy is effective as of 07/03/2024 and supersedes any
|
||
prior versions
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
);
|
||
}
|
||
|
||
export default PrivacyPolicyModal;
|