Files
2026-05-23 20:49:12 -04:00

125 lines
8.7 KiB
JavaScript

import Layout from "../components/layout/Layout"
import Link from "next/link"
export default function Home() {
return (
<>
<Layout headerStyle={1} footerStyle={1} headerCls="navbar-dark inner-page-header">
<section id="privacy-page" className="gr--whitesmoke pb-80 inner-page-hero division">
<div className="container">
<div className="row justify-content-center">
<div className="col-xl-10">
{/* INNER PAGE TITLE */}
<div className="inner-page-title">
<h2 className="s-52 w-700">Privacy Policy for MERMS</h2>
<p className="p-lg"><strong>Effective Date:</strong> 23rd October, 2024</p>
</div>
{/* TEXT BLOCK */}
<div className="txt-block legal-info">
<p>
Thank you for choosing MERMS . Your privacy is important to us. This Privacy Policy outlines how we collect, use, disclose, and protect your information when you use our software as a service (SaaS) offerings.
</p>
{/* Information We Collect */}
<h4 className="s-30 w-700"><span>1.</span> Information We Collect</h4>
<p>We may collect the following types of information:</p>
<ul className="simple-list">
<li className="list-item">
<p><span>Personal Information:</span> This includes any data that identifies you, such as your name, email address, phone number, billing information, and any other personal details you provide when you register or interact with our services.
</p>
</li>
<li className="list-item">
<p><span>Usage Data:</span> We automatically collect information about your interactions with our services, including your IP address, browser type, device information, and pages visited.
</p>
</li>
<li className="list-item">
<p><span>Cookies and Tracking Technologies:</span> We use cookies and similar technologies to enhance your experience and analyze how our services are used. You can manage your cookie preferences through your browser settings.
</p>
</li>
</ul>
{/* How We Use Your Information */}
<h4 className="s-30 w-700"><span>2.</span> How We Use Your Information</h4>
<p>We use the information we collect for various purposes, including:</p>
<ul className="simple-list">
<li className="list-item">
<p>To provide and maintain our services.</p>
</li>
<li className="list-item">
<p>To process transactions and send you related information.</p>
</li>
<li className="list-item">
<p>To improve our services, understand user behavior, and enhance user experience.</p>
</li>
<li className="list-item">
<p>To communicate with you, including sending updates, security alerts, and support messages.</p>
</li>
<li className="list-item">
<p>To comply with legal obligations and protect our rights.</p>
</li>
</ul>
{/* Information Sharing and Disclosure */}
<h4 className="s-30 w-700"><span>3.</span> Information Sharing and Disclosure</h4>
<p>
We do not sell your personal information. We may share your information in the following circumstances:
</p>
<ul className="simple-list">
<li className="list-item">
<p><span>Service Providers:</span> We may employ third-party companies to facilitate our services or to provide services on our behalf, such as payment processing, data analysis, or email communication.
</p>
</li>
<li className="list-item">
<p><span>Legal Requirements:</span> We may disclose your information if required to do so by law or in response to valid requests by public authorities.
</p>
</li>
<li className="list-item">
<p><span>Business Transfers:</span> In the event of a merger, acquisition, or sale of all or a portion of our assets, your information may be transferred as part of that business transaction.
</p>
</li>
</ul>
{/* Data Security */}
<h4 className="s-30 w-700"><span>4.</span> Data Security</h4>
<p>
We take the security of your information seriously and implement reasonable technical and organizational measures to protect it from unauthorized access, loss, or misuse. However, please be aware that no method of transmission over the internet or method of electronic storage is 100% secure.
</p>
{/* Your Rights */}
<h4 className="s-30 w-700"><span>5.</span> Your Rights</h4>
<p>
Depending on your location, you may have certain rights regarding your personal information, including the right to access, correct, delete, or restrict its processing. You can exercise these rights by contacting us at support@mermsemr.com.
</p>
{/* Changes to This Privacy Policy */}
<h4 className="s-30 w-700"><span>6.</span> Changes to This Privacy Policy</h4>
<p>
We may update our Privacy Policy from time to time. We will notify you of any significant changes by posting the new Privacy Policy on our website and updating the effective date. Your continued use of our services after changes to the Privacy Policy will signify your acceptance of those changes.
</p>
{/* Contact Us */}
<h4 className="s-30 w-700"><span>7.</span> Contact Us</h4>
<p>If you have any questions or concerns about this Privacy Policy or our data practices, please contact us at:</p>
<p>MermsEmr(MERMS) <br /> support@mermsemr.com</p>
<p>Thank you for trusting MERMS with your information.</p>
</div> {/* END TEXT BLOCK */}
</div>
</div> {/* End row */}
</div> {/* End container */}
</section>
</Layout>
</>
)
}
export async function getStaticProps({ locale }) {
const { getMessages } = await import('../utils/getMessages')
return {
props: {
locale,
messages: await getMessages(locale),
}
}
}