Skip to content

Added Privacy policy page and styled it according to website #770

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions packages/app/src/app/privacy/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,61 @@ function PrivacyPage({}) {
description="Privacy policies for Code Racer"
/>
{/* ADD PRIVACY POLICY */}
<section className="text-left mt-4 text-sm lg:text-md" >
<h2 className="text-xl font-semibold">Introduction</h2>
<p className="mt-2">
Welcome to Code Racer. We are comitted to protecting your personal information and your right to Privacy.
</p>

<h2 className="text-xl font-semibold mt-4">Information We Collect</h2>
<p className="mt-2">
We collect personal information that you provide to us, such as name,
address, contact information, passwords and security data, and payment
information.
</p>

<h2 className="text-xl font-semibold mt-4">How We Use Your Information</h2>
<p className="mt-2">
We use personal information collected via our services for a variety
of business purposes described below. We process your personal
information for these purposes with your consent, to comply with legal
obligations, and/or because we have a legitimate interest in doing so.
</p>

<h2 className="text-xl font-semibold mt-4">Sharing Your Information</h2>
<p className="mt-2">
We only share information with your consent, to comply with laws, to
provide you with services, to protect your rights, or to fulfill
business obligations.
</p>

<h2 className="text-xl font-semibold mt-4">Cookies and Tracking Technologies</h2>
<p className="mt-2">
We may use cookies and similar tracking technologies to access or
store information. Specific information about how we use such
technologies and how you can refuse certain cookies is set out in our
Cookie Policy.
</p>

<h2 className="text-xl font-semibold mt-4">Your Privacy Rights</h2>
<p className="mt-2">
In some regions, you have rights that allow you greater access to and
control over your personal information. You may review, change, or
terminate your account at any time.
</p>

<h2 className="text-xl font-semibold mt-4">Data Security</h2>
<p className="mt-2">
We aim to protect your personal information through a system of
organizational and technical security measures.
</p>

<h2 className="text-xl font-semibold mt-4">Contact Us</h2>
<p className="mt-2">
If you have questions or comments about this policy, you may email us
at [email protected].
</p>
</section>
</div>
);
}
Expand Down