Skip to content

Commit da94d1f

Browse files
committed
update about page
1 parent 30e4587 commit da94d1f

1 file changed

Lines changed: 119 additions & 13 deletions

File tree

app/about/page.tsx

Lines changed: 119 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
import { NextPage } from 'next';
22

33
const Header = ({ label }: { label: string }) => {
4-
return <h1 className="text-2xl my-3 font-bold">{label}</h1>;
4+
return (
5+
<h2
6+
id={label.toLowerCase().replaceAll(' ', '-')}
7+
className="my-3 scroll-mt-32 text-2xl font-bold"
8+
>
9+
{label}
10+
</h2>
11+
);
512
};
613

714
const About: NextPage = () => {
815
return (
9-
<div className="pt-12 max-w-4xl mx-auto">
10-
<Header label="About" />
16+
<div className="mx-auto max-w-4xl pt-12">
17+
<h1 className="my-3 text-2xl font-bold">About</h1>
1118
<p className="mb-3">
1219
The website provides tools that help issue and manage tokens on the
1320
MultiversX blockchain. It also provides tools that can help with
@@ -47,23 +54,122 @@ const About: NextPage = () => {
4754
Always test the app on the devnet first.
4855
</p>
4956
<Header label="Disclaimer" />
57+
<p className="mb-3 font-extrabold">Last Updated: 2024-03-30</p>
58+
59+
<p className="mb-3">
60+
By using Buildo.dev, you acknowledge and agree to the terms outlined in
61+
this disclaimer. Buildo.dev is designed to facilitate transactions on
62+
the MultiversX blockchain directly within your browser without
63+
third-party involvement. While we strive to provide a seamless and
64+
secure experience, it is crucial to understand the inherent risks
65+
associated with blockchain transactions and the use of our platform.
66+
</p>
67+
68+
<p className="font-extrabold">No Liability</p>
5069
<p className="mb-3">
51-
The website and the tools it provides are shared as they are. There are
52-
no guarantees that everything works as it should. On the mainnet, use
53-
them at your own risk, only when you know what you are doing!
70+
Buildo.dev and its developers, affiliates, or agents will not be liable
71+
for any direct, indirect, incidental, consequential, or any other
72+
damages arising out of or in connection with your use of this
73+
website/app or any transaction conducted through it on the MultiversX
74+
blockchain mainnet. This includes, but is not limited to, loss of data,
75+
income, profit, or opportunity, as well as any other possible damages,
76+
even if we have been advised of the possibility of such damages.
5477
</p>
78+
79+
<p className="font-extrabold">Testing on Devnet</p>
80+
<p className="mb-3">
81+
We strongly advise all users to thoroughly test their transactions on
82+
the MultiversX blockchain devnet before executing them on the mainnet.
83+
The devnet provides a safe environment to ensure the intended outcomes
84+
of your transactions without risking real assets. Failure to test on the
85+
devnet first may result in unexpected outcomes for which Buildo.dev
86+
bears no responsibility.
87+
</p>
88+
89+
<p className="font-extrabold">Open Source Software</p>
5590
<p className="mb-3">
56-
I will not be liable to You or anyone else for any decision made or
57-
action taken in reliance on the information given by the Service or for
58-
any consequential, special, or similar damages, even if advised of the
59-
possibility of such damages.
91+
The source code for Buildo.dev is openly available for review. We
92+
encourage all users to inspect and analyze the code to understand its
93+
functionality fully and assess its security before use. The open-source
94+
nature of our platform is intended to foster transparency and trust;
95+
however, it is the user&apos;s responsibility to ensure they are
96+
satisfied with the software&apos;s safety and reliability before
97+
engaging in any transactions.
6098
</p>
99+
100+
<p className="font-extrabold">Your Responsibility</p>
101+
<p className="mb-3">
102+
As a user, you bear full responsibility for all transactions you execute
103+
using Buildo.dev and the MultiversX blockchain. You are urged to
104+
exercise caution, perform due diligence, and consider the risks involved
105+
in blockchain transactions.
106+
</p>
107+
108+
<p>
109+
By continuing to use Buildo.dev, you agree to this disclaimer and
110+
acknowledge understanding the risks involved.
111+
</p>
112+
61113
<Header label="Privacy Policy" />
114+
<p className="mb-3 font-extrabold">Last Updated: 2024-03-30</p>
115+
62116
<p className="mb-3">
63-
The website {"doesn't"} track or collect any {"users'"} data. I{' '}
64-
{"don't"} use analytics tools and other tools that gather information
65-
about users. There are no cookies used.
117+
Welcome to Buildo.dev, a digital platform dedicated to enabling
118+
transactions on MultiversX with in-browser signing capabilities. At
119+
Buildo.dev, we prioritize your privacy and are committed to protecting
120+
it. This Privacy Policy outlines the types of information we do not
121+
collect, our stance on cookies, and how we handle transactions without
122+
any third-party involvement.
66123
</p>
124+
125+
<p className="font-extrabold">Information We Do Not Collect</p>
126+
<p className="mb-3">
127+
Buildo.dev is designed to operate without the need to collect personal
128+
information from its users. Our services allow you to perform
129+
transactions on MultiversX directly within your browser. We do not have
130+
a backend infrastructure, and we do not store, process, or transmit any
131+
personal data.
132+
</p>
133+
134+
<p className="font-extrabold">Cookies</p>
135+
<p className="mb-3">
136+
Buildo.dev does not use cookies. We believe in providing a seamless
137+
experience that respects your privacy, which means you can use our
138+
services without worrying about tracking or storage of cookies on your
139+
device.
140+
</p>
141+
142+
<p className="font-extrabold">Transactions</p>
143+
<p className="mb-3">
144+
Our platform facilitates transactions on MultiversX without any
145+
third-party involvement. All transactions are signed and executed
146+
directly within your browser. Buildo.dev does not store or track the
147+
details of these transactions. Responsibility for the security and
148+
privacy of the transaction details lies solely with the user and the
149+
MultiversX blockchain.
150+
</p>
151+
152+
<p className="font-extrabold">No Third-Party Sharing</p>
153+
<p className="mb-3">
154+
Given our operational model, there is no collection of personal
155+
information, and thus, no sharing of such information with third
156+
parties.
157+
</p>
158+
159+
<p className="font-extrabold">Changes to Our Privacy Policy</p>
160+
<p className="mb-3">
161+
Buildo.dev reserves the right to modify this privacy policy at any time.
162+
Any changes will be posted on this page with an updated revision date.
163+
We encourage you to review our Privacy Policy regularly to stay informed
164+
about our practices.
165+
</p>
166+
167+
<p className="font-extrabold">Contact Us</p>
168+
<p>
169+
If you have any questions or concerns regarding this Privacy Policy,
170+
please contact us at julian.cwirko@gmail.com.
171+
</p>
172+
67173
<Header label="High-level Roadmap" />
68174
<p className="mb-3">
69175
Buildo.dev will get more functionalities related to smart contracts and

0 commit comments

Comments
 (0)