Skip to content

Added content to the Privacy page #776

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
26 changes: 24 additions & 2 deletions packages/app/src/app/privacy/page.tsx
Original file line number Diff line number Diff line change
@@ -7,9 +7,31 @@ function PrivacyPage({}) {
title="Privacy Policies"
description="Privacy policies for Code Racer"
/>
{/* ADD PRIVACY POLICY */}
<div className="mt-8 space-y-4">
<p>
At Code Racer, we are committed to protecting your privacy. This
document explains how we handle your data.
</p>
<ul className="list-disc list-inside">
<li>
<strong>Data Collection:</strong> We collect user data such as names,
email addresses, and activity logs to enhance the user experience.
</li>
<li>
<strong>Data Usage:</strong> Your data is used for improving
features, analytics, and delivering a personalized experience.
</li>
<li>
<strong>Third-Party Sharing:</strong> We do not share your data with
third parties without your consent.
</li>
</ul>
<p>
If you have any concerns, contact us at [email protected].
</p>
</div>
</div>
);
}

export default PrivacyPage;