Skip to content

Commit 1d70142

Browse files
authored
Merge branch 'webdevcody:main' into webdevcody#648-invalid-race-post-request
2 parents f15374a + 361b123 commit 1d70142

File tree

2 files changed

+56
-1
lines changed

2 files changed

+56
-1
lines changed

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ Happy coding and enjoy the race!
9393
4. [You need to write tests when this starts to happen](https://www.youtube.com/watch?v=PzrhclEQp-M)
9494
5. [CodeRacer had a major security issue](https://www.youtube.com/watch?v=FigpqBGqwK4)
9595
6. [Stop calling prisma inside server components](https://www.youtube.com/watch?v=sLIoCfKK5SA)
96+
7. [Working on our Community Project Code Racer (Next, Tailwind, ShadCN/UI, Prisma)](https://www.youtube.com/watch?v=n1Q8AMgN-Bo)
9697

9798
<details>
9899
<summary>

Diff for: packages/app/src/app/terms/page.tsx

+55-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,61 @@ const page = () => {
33
return (
44
<>
55
<Heading title="Terms" />
6-
</>
6+
<div>
7+
<h1>CodeRacer - Terms of Service</h1>
8+
<p><strong>Effective Date:</strong> [Date]</p>
9+
10+
<p>Welcome to CodeRacer! These Terms of Service ("Terms") constitute a legal agreement between you and CodeRacer. Please read these Terms carefully before using our platform, which is accessible at <a href="https://code-racer-eight.vercel.app/">https://code-racer-eight.vercel.app/</a>. By using CodeRacer, you agree to be bound by these Terms.</p>
11+
12+
<h2>1. User Accounts</h2>
13+
<p>
14+
<strong>1.1. Account Creation:</strong> To use certain features of CodeRacer, you must create an account by logging in with your GitHub account.
15+
</p>
16+
<p>
17+
<strong>1.2. Account Responsibility:</strong> You are responsible for maintaining the confidentiality of your account information and for all activities that occur under your account.
18+
</p>
19+
20+
<h2>2. Use of the Platform</h2>
21+
<p>
22+
<strong>2.1. Open Source:</strong> CodeRacer is an open-source platform, and its source code is available on GitHub for review and contributions.
23+
</p>
24+
<p>
25+
<strong>2.2. Coding Practice:</strong> CodeRacer is designed for coding practice in various languages and supports multiplayer modes.
26+
</p>
27+
<p>
28+
<strong>2.3. Privacy:</strong> We do not collect or store user data beyond what is necessary for GitHub authentication and platform functionality. For more details, please refer to our Privacy Policy.
29+
</p>
30+
31+
<h2>3. Intellectual Property</h2>
32+
<p>
33+
<strong>3.1. Ownership:</strong> Users retain ownership of the code they create and submit on CodeRacer. CodeRacer retains ownership of the platform and its underlying software.
34+
</p>
35+
36+
<h2>4. CodeRacer Community</h2>
37+
<p>
38+
<strong>4.1. Community Standards:</strong> Users are expected to maintain a respectful and inclusive environment while using the platform.
39+
</p>
40+
41+
<h2>5. Termination</h2>
42+
<p>
43+
<strong>5.1. Termination Rights:</strong> CodeRacer reserves the right to terminate or suspend your access to the platform at any time for violations of these Terms or for any other reason.
44+
</p>
45+
46+
<h2>6. Limitation of Liability</h2>
47+
<p>
48+
<strong>6.1. Disclaimer:</strong> CodeRacer is provided "as is," and we make no warranties or representations about the accuracy or reliability of the platform. Your use of CodeRacer is at your own risk.
49+
</p>
50+
51+
<h2>7. Changes to Terms</h2>
52+
<p>
53+
<strong>7.1. Updates:</strong> CodeRacer may update these Terms from time to time. We will notify you of any changes, and your continued use of the platform after such changes will constitute your acceptance of the revised Terms.
54+
</p>
55+
56+
<h2>8. Contact Us</h2>
57+
<p>
58+
<strong>8.1. Questions:</strong> If you have any questions or concerns about these Terms, please contact us at <a href="mailto:[email protected]">[email protected]</a>.
59+
</p>
60+
</div>
761
);
862
};
963

0 commit comments

Comments
 (0)