Skip to content

Commit 7aebd07

Browse files
authored
docs: add /terms-of-service page (#6758)
1 parent f48c8f2 commit 7aebd07

File tree

1 file changed

+122
-0
lines changed
  • documentation/src/pages/terms-of-service

1 file changed

+122
-0
lines changed
Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
import Head from "@docusaurus/Head";
2+
import { BlogFooter } from "@site/src/refine-theme/blog-footer";
3+
import { CommonHeader } from "@site/src/refine-theme/common-header";
4+
import { CommonLayout } from "@site/src/refine-theme/common-layout";
5+
import React from "react";
6+
7+
const TermsOfService: React.FC = () => {
8+
return (
9+
<CommonLayout>
10+
<Head title="Terms of Service | Refine">
11+
<html data-page="terms_of_service" data-customized="true" />
12+
</Head>
13+
<div className="refine-prose">
14+
<CommonHeader hasSticky={true} />
15+
16+
<div className="flex-1 flex flex-col pt-8 lg:pt-16 pb-32 max-w-[800px] w-full mx-auto px-2">
17+
<h1>Terms of Service</h1>
18+
<p>Last Updated: April 21, 2025</p>
19+
<p>
20+
{`These Terms of Service ("Terms") are a legal agreement between you ("you" or "User") and Refine Development Inc. ("RefineAI," "we," or "us"). These Terms govern your use of RefineAI and any related sites, services, and applications offered by RefineAI (collectively, the "Services"). By using the Services, you agree to these Terms and our Privacy Policy.`}
21+
</p>
22+
<h2>{"1. Use of the Services"}</h2>
23+
<p>
24+
{
25+
"Subject to these Terms, RefineAI grants you a limited, non-exclusive, non-transferable license to access and use the Services. You must comply with all applicable laws, rules, and regulations."
26+
}
27+
</p>
28+
<p>{"You may not:"}</p>
29+
<ul className="mt-0">
30+
<li>
31+
{
32+
"Reverse engineer, copy, modify, or create derivative works based on the Services."
33+
}
34+
</li>
35+
<li>
36+
{
37+
"Use the Services for any unlawful, harmful, or abusive purpose."
38+
}
39+
</li>
40+
<li>{"Use the Services to compete with RefineAI."}</li>
41+
<li>{"Share your account or allow unauthorized use."}</li>
42+
</ul>
43+
<h2>{"2. Ownership and Intellectual Property"}</h2>
44+
<p>
45+
{
46+
"We retain all rights, title, and interest in and to the Services, including all intellectual property rights. Except for the limited license granted to you, these Terms do not convey any right or interest in or to RefineAI’s content or technology."
47+
}
48+
</p>
49+
<p>
50+
{
51+
"You own all rights to any content, code, or applications you independently create using the Services, except for underlying AI models, platform software, and other proprietary technologies of RefineAI."
52+
}
53+
</p>
54+
<h2>{"3. AI-Generated Output"}</h2>
55+
<p>{`Our platform may generate code, text, or other output based on your inputs ("AI Output"). You are solely responsible for reviewing and validating all AI Output before using it. RefineAI makes no warranties as to the accuracy, completeness, or suitability of any AI Output.`}</p>
56+
<h2>{"4. Account Security"}</h2>
57+
<p>
58+
{
59+
"You are responsible for maintaining the confidentiality of your account credentials and for all activity under your account. Notify us immediately of any unauthorized use or breach of security."
60+
}
61+
</p>
62+
<h2>{"5. Fees and Payment"}</h2>
63+
<p>
64+
{
65+
"Some parts of the Services may be offered for a fee. All fees are non-refundable unless otherwise stated. You authorize us to charge your payment method on a recurring basis."
66+
}
67+
</p>
68+
<p>
69+
{
70+
"We may change pricing or subscription plans at any time with prior notice."
71+
}
72+
</p>
73+
<h2>{"6. Termination"}</h2>
74+
<p>
75+
{
76+
"We may suspend or terminate your access to the Services at any time for any reason, including violation of these Terms. Upon termination, your right to use the Services will cease immediately."
77+
}
78+
</p>
79+
<h2>{"7. Disclaimers"}</h2>
80+
<p>{`THE SERVICES AND AI OUTPUT ARE PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTIES OF ANY KIND. TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE LAW, REFINEAI DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.`}</p>
81+
<h2>{"8. Limitation of Liability"}</h2>
82+
<p>
83+
{
84+
"TO THE MAXIMUM EXTENT PERMITTED BY LAW, REFINE DEVELOPMENT INC., ITS AFFILIATES, DIRECTORS, OFFICERS, EMPLOYEES, OR AGENTS SHALL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR PUNITIVE DAMAGES, OR ANY LOSS OF PROFITS, REVENUE, DATA, OR USE, ARISING OUT OF OR RELATED TO THE SERVICES OR THESE TERMS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES."
85+
}
86+
</p>
87+
<p>
88+
{
89+
"OUR TOTAL LIABILITY FOR ANY CLAIM ARISING OUT OF OR RELATING TO THE SERVICES SHALL NOT EXCEED THE GREATER OF: (A) AMOUNTS PAID BY YOU TO REFINEAI IN THE TWELVE MONTHS PRECEDING THE CLAIM; OR (B) $50."
90+
}
91+
</p>
92+
<h2>{"9. Indemnification"}</h2>
93+
<p>
94+
{
95+
"You agree to indemnify, defend, and hold harmless RefineAI and its officers, directors, employees, and agents from any claims, liabilities, damages, losses, and expenses arising out of your use of the Services, your content, your violation of these Terms, or your violation of any rights of another."
96+
}
97+
</p>
98+
<h2>{"10. Governing Law"}</h2>
99+
<p>
100+
{
101+
"These Terms are governed by the laws of the State of California, without regard to its conflict of law principles. Any legal action must be brought in the state or federal courts located in Contra Costa County, California."
102+
}
103+
</p>
104+
<h2>{"11. Modifications"}</h2>
105+
<p>
106+
{
107+
"We may revise these Terms at any time. Changes will be effective when posted on our site. Your continued use of the Services after any changes constitutes your acceptance of the revised Terms."
108+
}
109+
</p>
110+
<h2>{"12. Contact Us"}</h2>
111+
<p>
112+
{"If you have any questions about these Terms, contact us at:"}{" "}
113+
<a href="mailto:info@refine.dev">info@refine.dev</a>
114+
</p>
115+
</div>
116+
<BlogFooter />
117+
</div>
118+
</CommonLayout>
119+
);
120+
};
121+
122+
export default TermsOfService;

0 commit comments

Comments
 (0)