Files
ax3Client/src/Components/Privacy.js
Kenneth Jannette 4c1fb67383 first commit
2024-01-11 18:24:41 -06:00

37 lines
1.3 KiB
JavaScript

import { useNavigate } from "react-router-dom";
const Privacy = () => {
const navigate = useNavigate();
return (
<>
<div className="tos-container">
<h1>Privacy</h1>
<p className="tos-para">
Novodraft is committed to protecting the privacy of our users.
Novodraft does not sell or rent user information and we do not share
user information without prior consent except as compelled by law.
</p>
<p className="tos-para">
Novodraft collects only enough information from users to enable the
functioning of this website and its services. It will never collect
extra information about you and uses no tracking, cookies or logging
with personal information.{" "}
</p>
<p className="tos-para">
The only information ever stored is your chosen email address and
contact information that is provided upon signup. NovoDraft is located
within the United States, and therefore will process and store your
information in the United States.{" "}
</p>
<p className="tos-para">
If you would like to remove your data, or if you have any questions
about how your data is used, please contact us.
</p>
</div>
</>
);
};
export default Privacy;