Skip to content

Commit b1d4e3c

Browse files
small change to homepage
1 parent 19fc25d commit b1d4e3c

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

website/src/pages/Homepage.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44
font-size: 14px;
55
}
66

7+
.buttonRow {
8+
display: flex;
9+
flex-direction: column;
10+
align-items: center;
11+
gap: 20px;
12+
}
13+
14+
715
.button {
816
background-color: #12e172;
917
padding: 16px 32px 16px 32px;
@@ -93,6 +101,12 @@ a:nth-child(3) {
93101
font-size: 18px;
94102
}
95103

104+
.buttonRow {
105+
display: flex;
106+
flex-direction: row;
107+
gap: 20px;
108+
}
109+
96110
.actionRow {
97111
display: flex;
98112
flex-direction: row;

website/src/pages/Homepage.jsx

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,28 @@ const Homepage = () => {
1818
The tooling for building zero-knowledge applications at your
1919
fingertips
2020
</p>{" "}
21+
<div className="buttonRow">
22+
<Link
23+
target="_blank"
24+
rel="noopener noreferrer"
25+
to="/account"
26+
>
27+
<button className="button">
28+
{" "}
29+
Try now <span className="arrow">&rarr;</span>{" "}
30+
</button>
31+
</Link>{" "}
2132
<Link
2233
target="_blank"
2334
rel="noopener noreferrer"
2435
to="https://developer.aleo.org/sdk/"
2536
>
2637
<button className="button">
2738
{" "}
28-
View Docs <span className="arrow">&rarr;</span>{" "}
39+
See Docs <span className="arrow">&rarr;</span>{" "}
2940
</button>
3041
</Link>{" "}
42+
</div>
3143
<ul className="actionRow">
3244
<Link to="/account" className="actionItem">
3345
{" "}
@@ -58,7 +70,7 @@ const Homepage = () => {
5870
to="https://docs.leo-lang.org/sdk/create-leo-app/tutorial/"
5971
>
6072
<button className="button">
61-
Try it now <span className="arrow">&rarr;</span>
73+
Try now <span className="arrow">&rarr;</span>
6274
</button>
6375
</Link>{" "}
6476
<div className="footer">

0 commit comments

Comments
 (0)