Skip to content

Commit 83811b1

Browse files
Merge pull request #920 from ProvableHQ/mwong/privacy-terms-of-use
Add Terms of Use & Privacy Policy to SDK
2 parents 19fc25d + da4945b commit 83811b1

File tree

6 files changed

+2563
-14
lines changed

6 files changed

+2563
-14
lines changed

website/src/main.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,8 @@ function Main() {
112112
<a href="https://github.com/ProvableHQ/sdk">
113113
<img src="../public/github-mark-white.png" style={{height:"24px"}}></img>
114114
</a>
115+
<Link to="/terms_of_use" style={{color: "white"}}> <span>Terms of Use</span> </Link>
116+
<Link to="/privacy_policy" style={{color:"white"}}><span>Privacy Policy</span></Link>
115117

116118
© 2024 Provable Inc.
117119
</Footer>

website/src/pages/Homepage.jsx

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import "./Homepage.css";
66
const Homepage = () => {
77
return (
88
<div className="homepage">
9-
<Link to="https://provable.com/">
10-
<img
11-
src="../public/primary-wordmark-dark.png"
12-
className="logo"
13-
></img>
9+
<Link to="https://provable.com/">
10+
<img
11+
src="../public/primary-wordmark-dark.png"
12+
className="logo"
13+
></img>
1414
</Link>
1515
<div className="headerContainer">
1616
<h1 className="header">Aleo SDK</h1>
@@ -31,22 +31,16 @@ const Homepage = () => {
3131
<ul className="actionRow">
3232
<Link to="/account" className="actionItem">
3333
{" "}
34-
<li>
35-
Create and manage accounts{" "}
36-
</li>
34+
<li>Create and manage accounts </li>
3735
</Link>
3836

3937
<Link to="/develop" className="actionItem">
4038
{" "}
41-
<li>
42-
Execute and deploy programs{" "}
43-
</li>
39+
<li>Execute and deploy programs </li>
4440
</Link>
4541

4642
<Link to="/transfer" className="actionItem">
47-
<li>
48-
Manage program state and data
49-
</li>
43+
<li>Manage program state and data</li>
5044
</Link>
5145
</ul>
5246
<p className="secondSubheader">
@@ -68,6 +62,13 @@ const Homepage = () => {
6862
style={{ height: "24px", marginBottom: "1rem" }}
6963
></img>
7064
</a>
65+
<Link to="/terms_of_use" style={{ color: "white", textDecoration: "none" }}>
66+
{" "}
67+
<span>Terms of Use</span>{" "}
68+
</Link>
69+
<Link to="/privacy_policy" style={{ color: "white", textDecoration: "none"}}>
70+
<span>Privacy Policy</span>
71+
</Link>
7172
© 2024 Provable Inc.
7273
</div>
7374
</div>
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
body {
2+
font-family: Arial, sans-serif;
3+
line-height: 1.6;
4+
margin: 20px;
5+
}
6+
7+
p {
8+
margin: 10px 0;
9+
}
10+
table {
11+
width: 100%;
12+
border-collapse: collapse;
13+
margin: 20px 0;
14+
}
15+
table, th, td {
16+
border: 1px solid #ddd;
17+
}
18+
th, td {
19+
padding: 10px;
20+
text-align: left;
21+
}

0 commit comments

Comments
 (0)