diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 84860daa..4350272e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -92,6 +92,7 @@ Open your browser and visit to see the application runni ## Working on New Features + If you're new to Github and working with open source repositories, I made a video a while back which walks you through the process: [![How to make a pull request on an open source project](https://img.youtube.com/vi/8A4TsoXJOs8/0.jpg)](https://youtu.be/8A4TsoXJOs8) diff --git a/packages/app/src/app/privacy/page.tsx b/packages/app/src/app/privacy/page.tsx index c3f91c16..3bd9b236 100644 --- a/packages/app/src/app/privacy/page.tsx +++ b/packages/app/src/app/privacy/page.tsx @@ -1,15 +1,54 @@ import { Heading } from "@/components/ui/heading"; +import Link from "next/link"; -function PrivacyPage({}) { +const page = () => { return ( -
- - {/* ADD PRIVACY POLICY */} +
+ +

Privacy policies for Code Racer

+

+ At Code Racer, we value your privacy and are committed to protecting your personal information. This Privacy Policy outlines how we collect, use, and protect any data you share while using our platform. +

+ +
+
+

Information We Collect

+

+ At Code Racer, we collect limited information to offer you a smooth, competitive, and personalized experience. When you register or sign in (optionally via services like GitHub), we may collect basic user data such as your name, email, and profile image. +

+
+ +
+

How We Use Your Information

+

+ All collected information is used solely to enhance your experience on Code Racer. We use it to manage races, maintain leaderboards, track progress, and occasionally communicate important updates. +

+
+ +
+

Cookies and Tracking

+

+ Cookies may be used to remember your session, improve navigation, and gather usage analytics. You can disable cookies in your browser settings if you prefer, but please note that some features of the site might not function as intended. +

+
+ +
+

Data Security

+

+ We implement industry-standard security measures to protect your data. However, no system is 100% secure, so we advise users to keep strong passwords and log out after sessions. +

+
+ +
+

Third-Party Services

+

+ If we integrate with third-party services (like GitHub OAuth), their respective privacy policies will apply. We encourage users to review those policies before use. +

+
+ +
); -} +}; -export default PrivacyPage; +export default page;