first commit

This commit is contained in:
Kenneth Jannette
2024-01-11 18:24:41 -06:00
commit 4c1fb67383
103 changed files with 29954 additions and 0 deletions

36
src/Components/Privacy.js Normal file
View File

@@ -0,0 +1,36 @@
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;