Skip to content

Commit cd95502

Browse files
committed
add gpt privacy policy
1 parent e82d0d2 commit cd95502

1 file changed

Lines changed: 82 additions & 0 deletions

File tree

app/gpt-privacy/page.tsx

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
import { NextPage } from 'next';
2+
3+
const Header = ({ label }: { label: string }) => {
4+
return <h1 className="text-2xl my-3 font-bold">{label}</h1>;
5+
};
6+
7+
const SubHeader = ({ label }: { label: string }) => {
8+
return <h2 className="text-xl my-3 font-bold">{label}</h2>;
9+
};
10+
11+
const GptPrivacy: NextPage = () => {
12+
return (
13+
<div className="pt-12 max-w-4xl mx-auto">
14+
<Header label="Privacy Policy for Buildo Expert GPT assistant" />
15+
<p className="mb-3">
16+
<strong>Last Updated:</strong> 09 Dec 2023
17+
</p>
18+
19+
<SubHeader label="Introduction" />
20+
<p className="mb-3">
21+
Buildo Expert GPT assistant integrates {"OpenAI's"} GPT technology and
22+
connects to the public Multiversx blockchain API. This privacy policy
23+
explains our commitment to privacy, emphasizing our adherence to{' '}
24+
{"OpenAI's"} general privacy policy, and details our specific use of the
25+
Multiversx blockchain API.
26+
</p>
27+
28+
<SubHeader label="Adherence to OpenAI's Privacy Policy" />
29+
<p className="mb-3">
30+
- Buildo Expert GPT assistant fully adheres to the privacy practices and
31+
guidelines set forth in {"OpenAI's"} general privacy policy.
32+
<br />- We do not collect, store, or use any personal data beyond what
33+
is collected by OpenAI services. Our use of GPT technology is in strict
34+
compliance with {"OpenAI's"} data handling and privacy standards.
35+
</p>
36+
37+
<SubHeader label="Use of Multiversx Blockchain API" />
38+
<p className="mb-3">
39+
- Buildo Expert GPT assistant accesses public information available on
40+
the Multiversx blockchain via its public API.
41+
<br />
42+
- The data retrieved includes transaction data, wallet addresses, and
43+
other blockchain-related information that is publicly accessible.
44+
<br />- We do not store any blockchain data on our servers. The
45+
assistant retrieves this information in real-time to respond to user
46+
queries.
47+
</p>
48+
49+
<SubHeader label="No Additional Data Collection" />
50+
<p className="mb-3">
51+
- Apart from the data processed through {"OpenAI's"} services, Buildo
52+
Expert GPT assistant does not collect any additional personal data.
53+
<br />- Our use of the Multiversx blockchain API involves accessing
54+
publicly available data only, without storing or processing personal
55+
user data.
56+
</p>
57+
58+
<SubHeader label="Data Security" />
59+
<p className="mb-3">
60+
- In line with {"OpenAI's"} privacy policy, there are appropriate
61+
security measures provided by OpenAI to protect data from unauthorized
62+
access or disclosure.
63+
<br />- However, users should be aware that no internet-based service
64+
can guarantee complete data security.
65+
</p>
66+
67+
<SubHeader label="Changes to This Privacy Policy" />
68+
<p className="mb-3">
69+
- We may update this policy to reflect changes in our practices or in
70+
the features of Buildo Expert GPT assistant.
71+
</p>
72+
73+
<SubHeader label="Contact Us" />
74+
<p className="mb-3">
75+
For any questions or concerns regarding this privacy policy, please
76+
contact us at julian.cwirko@gmail.com
77+
</p>
78+
</div>
79+
);
80+
};
81+
82+
export default GptPrivacy;

0 commit comments

Comments
 (0)