Skip to content

Commit ef307a9

Browse files
committed
Updated CSS and documentation links
Increased the minimum height in the CSS file for better layout handling. Also, swapped the positions of 'Privacy Engine' and 'Sharded Storage' sections on the documentation page to improve user navigation. The content within these sections has been updated accordingly to match their new titles.
1 parent b837460 commit ef307a9

File tree

3 files changed

+21
-26
lines changed

3 files changed

+21
-26
lines changed

src/components/Footer/index.js

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,25 @@
11
import React from 'react';
2-
import logo from '/static/img/ZEROpool_NEW_logo_wh.png'
3-
import Github from '/static/img/Github-icon.svg'
4-
import Medium from '/static/img/Medium.svg'
5-
import Telegram from '/static/img/Telegram.svg'
6-
import Twitter from '/static/img/Twitter.svg'
2+
73

84
const Footer = () => {
95
return (
106
<footer className="main-footer" id="contacts">
117
<div className="main-container main-footer__container">
128
<a className="main-footer__logo-link" href="/">
13-
<img className="main-footer__logo" src={logo} alt="zeropool"/>
9+
<img className="main-footer__logo" src='/img/ZEROpool_NEW_logo_wh.png' alt="zeropool"/>
1410
</a>
1511
<div className="main-footer__social">
1612
<a className="main-footer__social-link" href="https://github.com/zeropoolnetwork">
17-
<Github className="main-footer__social-img" />
13+
<img className="main-footer__social-img" src='/img/Github-icon.svg' alt="zeropool"/>
1814
</a>
1915
<a className="main-footer__social-link" href="https://medium.com/zeropool">
20-
<Medium className="main-footer__social-img" />
16+
<img className="main-footer__social-img" src='/img/Medium.svg' alt="zeropool"/>
2117
</a>
2218
<a className="main-footer__social-link" href="https://twitter.com/ZeroPoolNetwork">
23-
<Twitter className="main-footer__social-img" />
19+
<img className="main-footer__social-img" src='/img/Twitter.svg' alt="zeropool"/>
2420
</a>
2521
<a className="main-footer__social-link" href="https://t.me/ZeroPoolCommunity">
26-
<Telegram className="main-footer__social-img" />
22+
<img className="main-footer__social-img" src='/img/Telegram.svg' alt="zeropool"/>
2723
</a>
2824
</div>
2925
</div>

src/css/style.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,7 @@
8181
display: flex;
8282
flex-direction: column;
8383
justify-content: center;
84-
min-height: 1000px;
85-
height: 100vh;
84+
min-height: 100vh;
8685
padding-top: 110px;
8786
background: var(--bg-color-dark);
8887
color: white;

src/pages/docs.js

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,44 +12,44 @@ const Docs = () => {
1212
<h1 className="text--center">Welcome to the ZeroPool Documentation Site</h1>
1313
<div className="row">
1414
<div className="col col--6">
15-
<Link to="/docs/privacy-engine/" className="card card--full-height">
15+
<Link to="/docs/sharded-storage" className="card card--full-height">
1616
<div className="card__header">
17-
<h3>Privacy Engine</h3>
17+
<h3>Sharded Storage</h3>
1818
</div>
1919
<div className="card__body">
20-
<p>Explore our privacy-preserving technologies</p>
20+
<p>Learn about our decentralized storage solution, featuring:</p>
2121
<ul>
2222
<li>Zero-Knowledge Proofs</li>
23-
<li>Fawkes-crypto circuit builder</li>
23+
<li>RS Codes</li>
24+
<li>PoST mining</li>
25+
<li>Recursive rollups</li>
2426
</ul>
2527
<div className="card__image">
26-
<img src="/img/privacy-engine.svg" alt="Privacy Engine" />
28+
<img src="/img/sharded-storage.svg" alt="Sharded Storage" />
2729
</div>
2830
</div>
2931
<div className="card__footer">
30-
<button className="button button--primary">Get Started</button>
32+
<button className="button button--primary">Explore Docs</button>
3133
</div>
3234
</Link>
3335
</div>
3436
<div className="col col--6">
35-
<Link to="/docs/sharded-storage" className="card card--full-height">
37+
<Link to="/docs/privacy-engine/" className="card card--full-height">
3638
<div className="card__header">
37-
<h3>Sharded Storage</h3>
39+
<h3>Privacy Engine</h3>
3840
</div>
3941
<div className="card__body">
40-
<p>Learn about our decentralized storage solution, featuring:</p>
42+
<p>Explore our privacy-preserving technologies</p>
4143
<ul>
4244
<li>Zero-Knowledge Proofs</li>
43-
<li>RS Codes</li>
44-
<li>PoST mining</li>
45-
<li>Recursive rollups</li>
45+
<li>Fawkes-crypto circuit builder</li>
4646
</ul>
4747
<div className="card__image">
48-
<img src="/img/sharded-storage.svg" alt="Sharded Storage" />
48+
<img src="/img/privacy-engine.svg" alt="Privacy Engine" />
4949
</div>
5050
</div>
5151
<div className="card__footer">
52-
<button className="button button--primary">Explore Docs</button>
52+
<button className="button button--primary">Get Started</button>
5353
</div>
5454
</Link>
5555
</div>

0 commit comments

Comments
 (0)